forked from BuildACell/txtlsim-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# setup.py - setup script for TX-TL modeling toolbox
# RMM, 26 Aug 2018
from setuptools import setup
# Get the long description from the README file
with open('README.md') as fp:
long_description = fp.read()
setup(
name = 'txtl',
version = '0.1',
author = 'BuildACell',
author_email = '[email protected]',
url = 'https://github.com/BuildACell/txtlsim-python',
description = 'TX-TL simulation toolbox in Python',
long_description = long_description,
packages = ['txtl', 'tests'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
'Operating System :: Unix'
'Operating System :: MacOS'
],
test_suite = 'nose.collector',
)