-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.77 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "adaptive-triangulation"
dynamic = ["version"]
description = "Fast N-dimensional Delaunay triangulation with incremental point insertion"
readme = "README.md"
authors = [{ name = "python-adaptive contributors" }]
license = "BSD-3-Clause"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy>=1.24",
]
[dependency-groups]
dev = [
{ include-group = "lint" },
{ include-group = "test" },
]
lint = [
"pre-commit",
]
test = [
"adaptive",
"pytest>=7.0",
"scipy>=1.10",
]
[project.urls]
Homepage = "https://github.com/python-adaptive/adaptive-triangulation"
Issues = "https://github.com/python-adaptive/adaptive-triangulation/issues"
Repository = "https://github.com/python-adaptive/adaptive-triangulation"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "adaptive_triangulation._rust"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D", "COM812", "ISC001"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101", "PLR2004", "ANN"]
"examples/*" = ["INP001", "T201", "S101", "N813", "RUF001", "RUF002", "SIM105", "PERF203"]
[tool.mypy]
strict = true
python_version = "3.10"