generated from SystemsBioinformatics/sbl-template-pub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.18 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dcFBA"
version = "0.1.2"
authors = [
{ name="Steven Wijnen", email="steven.wijnen@icloud.com" },
{ name="Francesco Moro", email="f.moro@vu.nl" },
{ name="Brett Olivier", email="b.g.olivier@vu.nl" }
]
license = { file = "LICENSE" }
description = "Python package for Dynamic Community FBA"
readme = "README.md"
requires-python = ">=3.8,<3.11" #Currently cplex only holds interfaces for python 3.8, 3.9, 3.10. Can be increased when cplex updates
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["Microbial Community", "Systems Biology", "Dynamic FBA", "Genome Scale Models"]
dependencies = [
"cbmpy >= 0.8.8",
"pyparsing >= 3.0",
]
[project.urls]
homepage = "https://github.com/SystemsBioinformatics/dynamic-community-fba"
bug-tracker = "https://github.com/SystemsBioinformatics/dynamic-community-fba/issues"
docs = "https://dynamic-community-fba.readthedocs.io/en/latest/index.html"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
"integration",
]
pythonpath = [
"src"
]