-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (68 loc) · 1.9 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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gemsembler"
version = "0.8.8"
description = "A tool for assembling and comparing several types of Genome-Scale Metabolic Models."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Elena Matveishina", email = "[email protected]" },
{ name = "Bartosz Bartmanski", email = "[email protected]" }
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["genome scale metabolic models", "metabolism", "biology"]
requires-python = ">=3.9"
dependencies = [
"cobra",
"metquest",
"dill",
"ncbi-genome-download",
"numpy",
"scipy",
"networkx",
"pandas>=2.0",
"pyarrow",
"seaborn",
"pyvis",
"h5py",
"platformdirs",
"pyyaml"
]
[project.scripts]
gemsembler = "gemsembler.__main__:main"
[project.urls]
"Homepage" = "https://git.embl.de/grp-zimmermann-kogadeeva/GEMsembler"
"Bug tracker" = "https://git.embl.de/grp-zimmermann-kogadeeva/GEMsembler/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.bumpver]
current_version = "0.8.8"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"src/gemsembler/__init__.py" = ['^__version__ = "{version}"$']
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
filterwarnings = [
"ignore::UserWarning"
]