-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
42 lines (41 loc) · 1.08 KB
/
pyproject.toml
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
[project]
name = "cnapy"
version = "1.2.4"
authors = [
{ name="Sven Thiele" },
{ name="Axel von Kamp" },
{ name="Pavlos Stephanos Bekiaris" },
{ name="Philipp Schneider" }
]
description = "An integrated environment for metabolic network analysis."
readme = "README.md"
requires-python = "==3.10.*"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"appdirs>=1.4",
"matplotlib>=3.6",
"requests>=2.28",
"cobra>=0.29",
"efmtool_link>=0.0.8",
"optlang_enumerator>=0.0.12",
"straindesign>=1.12",
"qtpy>=2.3",
"pyqtwebengine>=5.15",
"qtconsole==5.4",
"gurobipy==11.*",
"cplex==22.1.1.2", # We use this specific version as it's the only one with support for ARM Macs
"numpy==1.23",
"scipy==1.12",
"openpyxl",
"jpype1==1.5.0",
"setuptools",
]
[project.scripts]
cnapy = "cnapy.__main__:main_cnapy"
[project.urls]
Homepage = "https://github.com/cnapy-org/CNApy"
Issues = "https://github.com/cnapy-org/CNApy/issues"