-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (44 loc) · 1.13 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "interpn"
version = "0.2.3"
repository = "https://github.com/jlogan03/interpnpy"
documentation = "https://interpn.readthedocs.io/"
description = "N-dimensional interpolation/extrapolation methods"
authors = [{ author = "James Logan", email = "[email protected]" }]
requires-python = ">=3.9, <3.13"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
"numpy >= 2",
"pydantic >= 2.5.2",
]
[project.optional-dependencies]
test = [
"pytest >= 8.0",
"coverage >= 7.3.2",
"ruff >= 0.4.10",
"pyright == 1.1.337",
"mktestdocs >= 0.2.1",
"scipy >= 1.11.4",
"matplotlib >= 3.8",
]
bench = [
"scipy >= 1.11.4",
"matplotlib >= 3.8",
"memory_profiler >= 0.61.0",
]
doc = [
"mkdocs >= 1.5.3",
"mkdocstrings-python >= 1.7.5",
"mkdocs-material >= 9.4.10"
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "interpn._interpn"