-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
99 lines (89 loc) · 1.98 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
96
97
98
99
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "metacoag"
authors = [{name = "Vijini Mallawaarachchi", email = "viji.mallawaarachchi@gmail.com"}]
keywords = ["metagenomics", "binning", "contigs", "bioinformatics"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9,<3.13"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: MacOS",
"Operating System :: POSIX",
]
dependencies=[
"biopython",
"igraph",
"networkx",
"scipy",
"numpy",
"tqdm",
"pandas",
"click",
]
# the following are inferred from the source code
dynamic = ["version", "description"]
[project.sdist]
include = ["doc/", "requirements.txt", "src/*", "pyproject.toml"]
exclude = ["doc/*.html"]
[project.urls]
Home = "https://metacoag.readthedocs.io"
[project.scripts]
metacoag = "metacoag.cli:main"
combine_cov = "metacoag.metacoag_utils.support.combine_cov:main"
[project.optional-dependencies]
test = [
"nox",
"pytest",
"pytest-cov",
"pytest-xdist",
]
dev = [
"black",
"click",
"docformatter",
"flit",
"nox",
"isort",
"pytest",
"pytest-cov",
"pytest-xdist",
]
[tool.flit.sdist]
include = ["docs/", "requirements.txt", "src/*", "pyproject.toml"]
exclude = ["docs/*.html"]
[tool.pytest.ini_options]
addopts = ["--strict-config", "-ra"]
testpaths = "tests"
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311', 'py312']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| doc
| dist
| tests/data
)/
'''
[tool.isort]
atomic=true
force_grid_wrap=0
include_trailing_comma=true
lines_after_imports=2
lines_between_types=1
multi_line_output=3
use_parentheses=true