-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (61 loc) · 1.78 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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name="sequali"
description="Sequali is a QC tool that generates useful graphs for both short and long-read data."
authors = [
{name = "Ruben Vorderman", email = "r.h.p.vorderman@lumc.nl"}
]
keywords=[
"FASTQ",
"sequencing quality",
"uBAM",
"QC",
"nanopore",
"illumina",
]
readme = "README.rst"
license = {text = "AGPL-v3.0"}
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.10"
dependencies = [
"xopen>=2.0.0",
"pygal>=3.0.4",
"tqdm",
]
dynamic = ["version"]
[project.scripts]
sequali = "sequali.__main__:main"
sequali-report = "sequali.__main__:sequali_report"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.exclude-package-data]
sequali = ["*.c", "*.h"]
[tool.setuptools.package-data]
sequali = [
'*.pyi',
'py.typed',
'contaminants/*',
'adapters/*',
'static/*',
'pygal.js/README.md',
'pygal.js/2.0.x/*'
]
[project.urls]
"Documentation" = "https://sequali.readthedocs.io"
"Homepage" = "https://github.com/rhpvorderman/sequali"
"Issue tracker" = "https://github.com/rhpvorderman/sequali/issues"
[tool.setuptools_scm]
write_to = "src/sequali/_version.py"