-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
40 lines (33 loc) · 879 Bytes
/
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
[project]
name = "fiblat"
version = "0.7.0"
description = "A package for generating evenly distributed points on a sphere"
license = "MIT"
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["numba>=0.61.0", "numpy>=2.1.3"]
[dependency-groups]
dev = [
"myst-parser>=4.0.1",
"nbformat>=5.10.4",
"pyright>=1.1.398",
"pytest>=8.3.5",
"pytest-benchmark>=5.1.0",
"pytest-cov>=6.1.1",
"ruff>=0.11.4",
"sphinx>=8.2.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
strict = ["fiblat", "tests"]
[tool.ruff.lint]
extend-select = ["I", "D", "A", "B", "W", "PL", "UP", "FIX"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
addopts = "--cov fiblat --cov-report term-missing -m 'not long'"
markers = ["long: long benchmarks"]
[tool.uv]
keyring-provider = "subprocess"