-
Notifications
You must be signed in to change notification settings - Fork 130
/
pyproject.toml
71 lines (61 loc) · 1.66 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
[build-system]
requires = ["setuptools >= 63", "setuptools_scm[toml] >= 6.2", "Cython >= 0.29.20"]
build-backend = "setuptools.build_meta"
[project]
name = "cutadapt"
authors = [
{name = "Marcel Martin", email = "[email protected]"}
]
description = "Adapter trimming and other preprocessing of high-throughput sequencing reads"
readme = "README.rst"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"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"
dynamic = ["version"]
dependencies = [
"dnaio >= 1.2.3",
"xopen >= 1.6.0",
]
[project.urls]
"Homepage" = "https://cutadapt.readthedocs.io/"
"Changelog" = "https://cutadapt.readthedocs.io/en/stable/changes.html"
"Repository" = "https://github.com/marcelm/cutadapt/"
[project.scripts]
cutadapt = "cutadapt.cli:main_cli"
[project.optional-dependencies]
dev = [
"Cython",
"pytest",
"pytest-timeout",
"pytest-mock",
"sphinx",
"sphinx_issues",
"sphinx_better_subsection"
]
[tool.setuptools.exclude-package-data]
cutadapt = ["*.pyx", "*.c", "*.h"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
]
testpaths = ["tests", "src"]
xfail_strict = true
addopts = "--doctest-modules"
[tool.setuptools_scm]
write_to = "src/cutadapt/_version.py"
[tool.mypy]
warn_unused_configs = true
[tool.cibuildwheel]
environment = "CFLAGS=-g0"
test-extras = ["dev"]
test-command = ["pytest {project}"]
[tool.ruff]
line-length = 130