-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.77 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "cobramod"
description="Python package for pathway-centric modification and extension of genome-scale metabolic networks"
authors = [
{ name="Stefano Camborda La Cruz", email="[email protected]" },
{ name="Jan-Niklas Weder", email="[email protected]" },
{ name="Nadine Töpfer", email="[email protected]" },
]
maintainers = [
{ name="Nadine Töpfer", email="[email protected]" },
]
requires-python = ">=3.10"
dynamic = ["version", "readme"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = [ "genome-scale metabolic model", "constraint-based modelling", "COBRApy", "Escher", "metabolic model curation" ]
license= { file = "LICENSE" }
dependencies = [
"colorlog",
"cobra>=0.29.0",
"requests>=2.31.0",
"tqdm>=4.62.3",
"openpyxl>=3.1.2",
"webcolors>=1.13",
"pyarrow>=14.0.2",
"anywidget>=0.9.9"
]
[project.optional-dependencies]
escher = ["escher-legacy>=1.7.4"]
dev = [
"ruff",
"tox",
"sphinx",
"nbsphinx",
"sphinx-autoapi",
"jupyter-contrib-nbextensions",
"sphinx-rtd-theme",
"sphinxcontrib-napoleon",
"sphinxcontrib-bibtex",
]
[project.urls]
homepage = "https://github.com/Toepfer-Lab/cobramod"
Documentation = "https://cobramod.readthedocs.io/"
bugtracker = "https://github.com/Toepfer-Lab/cobramod/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"cobramod.data" = ["*.sbml"]
"cobramod.static" = ["*"]
[tool.setuptools.dynamic]
version = {attr = "cobramod.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[tool.ruff]
line-length = 80