-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
96 lines (82 loc) · 2.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = [
"setuptools", "wheel", "Cython", "numpy>1.20.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "pymantra"
version = "1.0.2"
license = {text = "AGPLv3"}
description = "Reaction-Centred Metabolic Network Analysis"
readme = "README.md"
authors = [
{name="Nikolai Koehler", email="[email protected]"},
{name="Josch Konstantin Pauling"}
]
maintainers = [
{name="Nikolai Koehler", email="[email protected]"},
{name="Josch Konstantin Pauling"}
]
keywords = [
"Bioinformatics", "Computational Metabolomics", "Metabolic Network"
]
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3"
]
dependencies = [
# pandas <= 1.4.2 contains a bug that prevents from debugging
# in certain cases
"pandas>=1.4.3",
"scipy>=1.8.0",
"scikit-learn>=1.0.2",
"networkx>=2.8.0",
"tqdm>=4.62.1",
"matplotlib>=3.3.0",
"seaborn>=0.9.0",
"neo4j>=4.4.0",
"pingouin>=0.5.2",
"statsmodels>=0.13.5",
# these are dependencies of pingouin that seems to not install
# automatically
"pandas-flavor",
"seaborn",
"outdated"
]
[project.optional-dependencies]
experiments = ["scikit-bio", "openpyxl", "scikit-optimize"]
dev = ["pytest", "pytest-cov", "flake8", "coverage"]
docs = [
"Sphinx", "furo", "sphinxcontrib-bibtex", "sphinx-copybutton",
"sphinxcontrib-mermaid>=0.8.1"
]
[project.urls]
Source = "https://www.github.com/lipitum/pymantra"
Documentation = "https://pymantra.readthedocs.io"
Publication = "https://doi.org/10.1101/2023.05.15.540613"
[tool.flake8]
max-line-length = 80
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["pymantra"]
omit = [
"*/__init__.py",
"pymantra/network/exceptions.py",
"pymantra/network/io_estimation.py",
# namemapping is excluded due to the high bandwidth
# => we only test it locally
"pymantra/namemapping/*",
"pymantra/database/query.py"
]
[tool.coverage.xml]
output = "coverage/coverage.xml"
[tool.coverage.html]
show_contexts = true
directory = "coverage/html"