-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
58 lines (54 loc) · 1.37 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "gbintk"
authors = [{name = "Vijini Mallawaarachchi", email = "[email protected]"}]
keywords = ["metagenomics", "binning", "contigs", "bioinformatics"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9,<3.13"
dependencies = ["click",
"cogent3",
"igraph",
"cairocffi",
"pycairo",
"networkx",
"scipy",
"numpy",
"pandas",
"tqdm",
"tabulate",
"graphbin",
"graphbin2>=1.3.3",
"metacoag>=1.2.1"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
]
# the following are inferred from the source code
dynamic = ["version", "description"]
[project.sdist]
include = ["doc/", "requirements.txt", "src/*", "pyproject.toml"]
exclude = ["doc/*.html"]
[project.scripts]
gbintk = "gbintk.cli:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
"pillow>10,<11",
]
dev = [
"black",
"click",
"flit",
"isort==5.13.2",
"gbintk[test]",
]