forked from lanl/PyBNF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 927 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (21 loc) · 927 Bytes
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
#!/usr/bin/env python3
"""setup.py: setuptools control"""
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('pybnf/pybnf.py').read(),
re.M
).group(1)
with open('README.md', 'rb') as f:
long_desc = f.read().decode('utf-8')
setup(name='pybnf',
packages=['pybnf'],
entry_points={'console_scripts': ['pybnf = pybnf.pybnf:main', 'pybnf-web = pybnf.webservice:start_api']},
version=version,
description='An application for parallel fitting of BioNetGen and SBML models using metaheuristics',
long_description=long_desc,
author='Eshan Mitra, Ryan Suderman, Alex Ionkov',
package=['pybnf'],
install_requires=['distributed>=2021.6.2', 'paramiko', 'msgpack==0.6.2', 'numpy', 'nose', 'pyparsing', 'libroadrunner>=1.6.0', 'dask>=2021.5.0', 'tornado >= 6.1', 'scipy', 'fastapi', 'uvicorn'],
python_requires=">=3.5")