-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.14 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
69
70
[project]
name = "rgrow"
dependencies = [
"numpy ~= 2.0",
"attrs ~= 23.2",
"matplotlib ~= 3.9",
"typing_extensions",
"tqdm",
"pyyaml",
"platformdirs",
]
requires-python = ">=3.10"
dynamic = ["version"]
[project.optional-dependencies]
gui = ["rgrow-cli"]
cli = ["rgrow-cli"]
full = ["rgrow"]
default = ["rgrow"]
[build-system]
requires = ["maturin~=1.10"]
build-backend = "maturin"
[tool.maturin]
bindings = "pyo3"
profile = "release"
manifest-path = "rgrow-python/Cargo.toml"
python-source = "rgrow-python"
include = ["LICENSE"]
[tool.uv.sources]
rgrow-cli = { workspace = true }
[tool.uv.workspace]
members = [".", "rgrow-cli"]
[dependency-groups]
testing = [
"pytest",
"hypothesis",
"pytest-benchmark",
]
docs = [
"zensical",
"mkdocstrings[python]",
"jupyter",
"nbconvert",
]
dev = [
"ipykernel>=6.31.0",
"ipywidgets>=8.1.8",
"pytest~=9.0",
"hypothesis",
"pytest-cov",
"pytest-benchmark",
"maturin>=1.11.2",
]
[tool.pytest.ini_options]
minversion = "9.0"
testpaths = ["rgrow-python/tests"]
norecursedirs = [
"dist",
"build",
".tox",
]
addopts = "--benchmark-skip"