-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (95 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
110 lines (95 loc) · 2.15 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
105
106
107
108
109
110
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "biofuse"
description = "Read-only FUSE filesystem views over VCF Zarr data"
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "sgkit Developers", email = "project@sgkit.dev"},
]
dependencies = [
"click>=8.2.0",
"pyfuse3>=3.4.0",
"trio>=0.22",
"vcztools>=0.2",
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/sgkit-dev/biofuse"
[project.scripts]
biofuse = "biofuse.cli:biofuse_main"
[dependency-groups]
test = [
"pytest",
"pytest-cov",
"pytest-trio",
"pytest-xdist",
"bio2zarr[tskit]",
"msprime",
]
lint = [
"ruff==0.15.1",
"prek==0.3.3",
"zizmor==1.24.1",
]
packaging = [
"twine",
"validate-pyproject[all]",
]
# Used by fs_tests/ harness for POSIX compliance and read-stress runs.
# Not required for normal biofuse use; invoke via
# `uv run --group fs-tests python -m fs_tests.harness`.
fs-tests = [
"click>=8.2.0",
"bio2zarr[tskit]",
"msprime",
]
dev = [
{include-group = "test"},
{include-group = "lint"},
{include-group = "packaging"},
]
[tool.setuptools]
packages = ["biofuse"]
[tool.pytest.ini_options]
addopts = "-n auto"
testpaths = ["tests"]
trio_mode = true
[tool.setuptools_scm]
write_to = "biofuse/_version.py"
local_scheme = "no-local-version"
[tool.ruff]
target-version = "py311"
line-length = 88
indent-width = 4
[tool.ruff.lint]
select = ["E", "F", "B", "W", "I", "N", "UP", "A", "PT", "PLC0415"]
ignore = ["N806", "N802", "N803", "A001", "A002", "B905", "RUF"]
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.isort]
known-third-party = [
"bio2zarr",
"click",
"msprime",
"numpy",
"pyfuse3",
"pytest",
"trio",
"vcztools",
"zarr",
]