-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
90 lines (75 loc) · 1.96 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
[build-system]
requires = ["setuptools >= 52", "setuptools_scm >= 6.2", "Cython >= 0.29.20"]
build-backend = "setuptools.build_meta"
[project]
name = "dnaio"
authors = [
{name = "Marcel Martin", email = "[email protected]"},
{name = "Ruben Vorderman", email = "[email protected]"}
]
description = "Read and write FASTA and FASTQ files efficiently"
readme = "README.rst"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
requires-python = ">=3.9"
dependencies = [
"xopen >= 1.4.0"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"Cython",
"pytest"
]
[project.urls]
"Homepage" = "https://dnaio.readthedocs.io/"
"Changelog" = "https://dnaio.readthedocs.io/en/latest/changes.html"
"Repository" = "https://github.com/marcelm/dnaio/"
[tool.setuptools.exclude-package-data]
dnaio = ["*.pyx"]
[tool.setuptools_scm]
write_to = "src/dnaio/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.cibuildwheel.windows.environment]
CFLAGS = "-g0 -DNDEBUG"
[tool.cibuildwheel.macos.environment]
CFLAGS = "-g0 -DNDEBUG"
[tool.cibuildwheel.linux.environment]
CFLAGS = "-g0 -DNDEBUG"
[tool.cibuildwheel]
test-requires = "pytest"
test-command = ["cd {project}", "pytest tests"]
[[tool.cibuildwheel.overrides]]
select = "*-win*"
test-command = ["cd /d {project}", "pytest tests"]
[tool.mypy]
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
[tool.coverage.report]
precision = 1
exclude_also = [
"def __repr__",
"@overload",
"if TYPE_CHECKING:",
]
[tool.coverage.run]
branch = true
parallel = true
include = [
"*/site-packages/dnaio/*",
"tests/*",
]
[tool.coverage.paths]
source = [
"src/",
"*/site-packages/",
]