-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (62 loc) · 1.79 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
[project]
name = "pyrheadb"
version = "0.1.2"
authors = [
{ name="Anastasia Sveshnikova", email="[email protected]" },
]
description = "Package to facilitate cheminformatics access to RheaDB and its analysis with Python"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
# "Operating System :: OS Independent",
]
dependencies = [
"setuptools", "pandas", "rdkit", "requests_ftp",
"networkx", "tqdm", "matplotlib",
"pathlib", "rxnmapper", "pillow", "cobra", "sparqlwrapper", "jupyterlab"
]
[project.optional-dependencies]
test = [
"pytest >=7.1.3",
"pytest-cov >=3.0.0",
"mypy >=1.4.1",
]
[project.urls]
Homepage = "https://github.com/sib-swiss/pyrheadb"
Issues = "https://github.com/sib-swiss/pyrheadb/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
#requires = [
# "setuptools>=61.0",
# "requests_ftp>=0.3.1",
# "rxnmapper>=0.3.0",
# "rdkit>=2023.9.1",
# "pandas>=2.0.0",
# "networkx>=3.0",
# "tqdm>=4.0.0",
# "matplotlib>=3.6.0",
# "pathlib>=1.0.1",
# "pillow>=10.0.0",
# "cobra>=0.29.0",
# "sparqlwrapper>=0.0.0",
# "jupyterlab>=4.2.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["pyrheadb"]
include-package-data = true
#[tool.setuptools.package-data]
#pyrheadb = ["pyrheadb/biochemical_assumptions", "pyrheadb/modeling_assumptions"]
[tool.pytest.ini_options]
addopts = [
"--cov=src",
"--color=yes",
"--cov-report=term-missing",
]