-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 1 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
[project]
name = "sprog"
version = "0.1.0"
description = "Sparse linear algebra for linear programming"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
dependencies = [
"numpy>=2.1.2",
"scipy>=1.14.1",
"pandas>=2.2.3",
"sparse-dot-mkl>=0.9.6",
"mkl-devel>=2024.2.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["COM812", "D203", "D211", "D213", "ISC001", "PLR0913", "RUF002", "RUF100"]
mccabe.max-complexity = 13
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = [
"--doctest-modules",
"--cov=sprog",
"--cov-report=xml",
"--memray",
"--junitxml=junit.xml",
"-o",
"junit_family=legacy"
]
[tool.hatch.build.targets.sdist]
ignore-vcs = true
packages = ["src/sprog"]
[tool.uv]
dev-dependencies = [
"pytest-cov>=5.0.0",
"pytest-memray>=1.7.0",
"pytest>=8.3.3",
"ruff>=0.7.0",
"sphinx-material>=0.0.36",
"sphinx>=8.1.3",
"twine>=5.1.1",
]