-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
50 lines (48 loc) · 1.79 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup
# Get the long description from the README file
with open('README.md') as fp:
long_description = fp.read()
setup(
name='biocrnpyler',
version='1.1.2',
author='Build-A-Cell',
url='https://github.com/BuildACell/biocrnpyler/',
description='A chemical reaction network compiler for generating large biological circuit models',
long_description=long_description,
packages=['biocrnpyler'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: OS Independent',
],
install_requires=[
"python-libsbml",
],
extras_require = {
"all": [
"numpy<2.0",
"matplotlib",
"networkx",
"bokeh>=1.4.0",
"fa2_modified",
"jupyter",
"pytest",
"pytest-cov",
"nbconvert"
],
},
tests_require=["pytest", "pytest-cov"],
setup_requires=["pytest-runner"],
python_requires='>=3.6',
keywords="SBML synthetic systems biology modeling Chemical Reaction Network CRN model",
project_urls={
'Documentation': 'https://readthedocs.org/projects/biocrnpyler/',
'Funding': 'http://www.cds.caltech.edu/~murray/wiki/index.php?title=Developing_Standardized_Cell-Free_Platforms_for_Rapid_Prototyping_of_Synthetic_Biology_Circuits_and_Pathways',
'Source': 'https://github.com/BuildACell/biocrnpyler',
'Tracker': 'https://github.com/BuildACell/BioCRNPyler/issues',
}, # give an installation message about bioscrape / roadrunner.
)