-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (95 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
104 lines (95 loc) · 2.34 KB
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
100
101
102
103
104
[project]
name = "dark-matter"
version = "7.1.12"
description = "Python library and utility scripts for working with genetic sequence data."
readme = "README.md"
requires-python = ">=3.10,<3.14"
license = "MIT"
authors = [
{name = "Terry Jones", email = "tcj25@cam.ac.uk"},
{name = "Barbara Mühlemann"},
{name = "Tali Veith"},
{name = "Sophie Mathias"},
{name = "Udo Gieraths"},
{name = "Nikolai Zaki"},
{name = "David Pattinson"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"biopython>=1.83",
"bz2file>=0.98",
"cachetools>=5.5.2",
"Cython>=0.29.16",
"dendropy>=5.0.1",
"edlib>=1.3.9.post1",
"ete4>=4.4.0",
"ipython>=8.12.3",
"matplotlib>=3.7.5",
"mysql-connector-python>=9.0.0",
"numpy>=1.14.2",
"polars>=1.36.1",
"progressbar>=2.5",
"prseq>=0.0.33",
"pysam>=0.23.0",
"pyzmq>=14.3.1",
"requests>=2.32.3",
"rich>=14.0.0",
"scikit-learn>=1.3.2",
"simplejson>=3.5.3",
"summarize-ranges>=0.1.1",
"types-cachetools>=5.5.0",
"types-requests>=2.32.0",
"xlsxwriter>=3.2.9",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {where = ["src"], include = ["dark*"]}}
data-files = {"bin" = ["bin/*"]}
[tool.ruff]
line-length = 88
lint.select = ["E", "F", "W", "I"]
exclude = [
".git",
"__pycache__",
".mypy_cache",
".venv",
]
[dependency-groups]
dev = [
"nox>=2025.5.1",
"pytest>=8.3.5",
"ruff>=0.13.3",
]
[project.urls]
Homepage = "https://github.com/acorg/dark-matter"
"Bug Tracker" = "https://github.com/acorg/dark-matter/issues"
[tool.basedpyright]
include = [
"src",
"bin",
"test",
]
exclude = [
"**/__pycache__",
".venv",
]
ignore = []
reportAny = false
reportImplicitStringConcatenation = false
reportUnusedCallResult = false
reportExplicitAny = false
[tool.pytest.ini_options]
testpaths = ["test"]
pythonpath = ["src"]