-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.55 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
[project]
name = "aspartik"
dynamic = ["version", "author", "license"]
# Uses compression.zstd (PEP 784)
requires-python = ">=3.14"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
keywords = ["bioinformatics"]
[project.optional-dependencies]
cli = ["cliclass~=0.1.0a1"]
[dependency-groups]
dev = [
"maturin[patchelf]~=1.13 ; sys_platform == 'linux'",
"maturin~=1.13 ; sys_platform != 'linux'",
"mpmath~=1.4",
"polars~=1.39",
"pyarrow~=23.0.1",
"pdoc~=16.0",
"ty~=0.0.30",
"pytest~=9.0",
"ruff~=0.15.10",
"delvewheel~=1.12",
"cliclass~=0.1.0a1", # duplicated from `cli`
]
[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
module-name = "aspartik._aspartik_rust_impl"
manifest-path = "crates/aspartik/Cargo.toml"
features = ["pyo3/extension-module"]
include = ["LICENSE"]
[tool.pytest]
testpaths = ["python/tests"]
python_files = ["*.py"]
strict_markers = true
markers = [
"manual: slow tests which shouldn't be executed by default"
]
[tool.pyright]
reportUnsupportedDunderAll = false
[tool.ruff.lint]
select = ["E", "F", "I", "W", "RUF"]
ignore = ["E501", "F401"]
[tool.ruff.lint.isort]
combine-as-imports = true
section-order = [
"future",
"third-party",
"standard-library",
"first-party",
"local-folder",
]
known-first-party = ["aspartik"]