-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.76 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
[project]
name = "rhiza"
version = "0.8.0"
description = "Reusable configuration templates for modern Python projects"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Thomas Schmelzer" }
]
keywords = ["templates", "configuration", "ci", "ruff"]
classifiers = [
"Private :: Do Not Upload",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
dependencies = []
[dependency-groups]
dev = [
"marimo>=0.18.0,<1.0", # Reactive notebook runtime for book/ examples (v0.18+ for streaming, <1.0 for API stability)
"numpy>=2.4.0,<3.0", # Numerical computing for notebook data analysis (v2.4+ includes 2.0 improvements, <3.0 avoids breaking changes)
"plotly>=6.5.0,<7.0", # Interactive visualization in notebooks (v6.5+ mature features, <7.0 for API stability)
"pandas>=3,<3.1", # Data manipulation for notebook examples (v3+ for modern APIs, <3.1 conservative after major release)
"pyyaml>=6.0,<7.0", # YAML parsing for validation scripts (v6+ for security fixes, <7.0 for API stability)
# See docs/DEPENDENCIES.md for detailed version rationale
]
[project.urls]
Homepage = "https://github.com/jebel-quant/rhiza"
Repository = "https://github.com/jebel-quant/rhiza"
Issues = "https://github.com/jebel-quant/rhiza/issues"
[tool.deptry.package_module_name_map]
marimo = "marimo"
numpy = "numpy"
plotly = "plotly"
pandas = "pandas"
pyyaml = "yaml"