-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.44 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
[project]
name = "bed-reader"
readme = "README.md"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = ["numpy>=1.13.3"]
[project.optional-dependencies]
samples = ["pooch>=1.5.0"]
sparse = ["scipy>=1.4"]
dev = [
"pytest",
"pytest-cov",
"pytest-doctestplus",
"pytest-datadir",
"limix-sphinx-theme>=0.0.4",
"pytest-sphinx>=0.2.2",
"sphinx>=6.2.1",
"sphinx-autoapi>=3.0.0",
"maturin>=1.5.0",
"pandas>=0.25.1",
"recommonmark>=0.7.1",
"ruff>=0.1.0",
]
min_dev = ["numpy>=1.13.3", "pytest", "pytest-datadir"]
[project.urls]
homepage = "https://fastlmm.github.io"
source = "https://github.com/fastlmm/bed-reader"
bug-tracker = "https://github.com/fastlmm/bed-reader/issues"
documentation = "http://fastlmm.github.io/bed-reader"
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["extension-module"]
[tool.ruff]
line-length = 120
exclude = [
"*.ipynb",
"doc/source/conf.py",
"bed_reader/tests/benchmark/benchmark.py",
]
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["ANN202"]
[tool.pytest.ini_options]
addopts = "--doctest-modules --doctest-glob=*.rst --doctest-glob=*.md"
doctest_optionflags = "ELLIPSIS"
[tool.uv]
dev-dependencies = ["twine>=5.1.1"]