-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.14 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="findCPcore",
version="0.1.1",
author="Alex Oarga",
author_email="[email protected]",
description="findCP core package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/findCP/findCPcore",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
install_requires=[
"cobra==0.16.0",
"depinfo",
"python-dotenv",
"future",
"Jinja2",
"mpmath",
"numpy>=1.16.5",
"optlang>=1.4.2",
"pandas>=0.17.0",
"python-dateutil",
"python-libsbml",
"python-libsbml-experimental==5.18.0",
"pytz",
"ruamel.yaml>=0.15",
"setuptools",
"six",
"swiglpk",
"sympy",
"tabulate",
"xlwt==1.3.0",
"six"
],
python_requires='>=3.5',
)