-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rhiza-tools"
version = "0.4.4"
description = "Extra utilities and tools for the Rhiza ecosystem"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"loguru>=0.7.3",
"questionary>=2.1.1",
"semver>=3.0.4",
"tomlkit>=0.13.3",
"typer>=0.9.0",
"bump-my-version==1.3.0",
"pandas>=3,<3.1",
"plotly>=6.5.0,<7.0",
"prompt-toolkit>=3.0.52",
]
[dependency-groups]
dev = [
"marimo>=0.18.0,<1.0", # Reactive notebook runtime for book/ examples
"numpy>=2.4.0,<3.0", # Numerical computing for notebook data analysis
]
[project.scripts]
rhiza-tools = "rhiza_tools.__main__:app"
[project.entry-points."rhiza.plugins"]
tools = "rhiza_tools.__main__:app"
[tool.hatch.build.targets.wheel]
packages = ["src/rhiza_tools"]
[tool.deptry.package_module_name_map]
"bump-my-version" = "bumpversion"
"loguru" = "loguru"
"marimo" = "marimo"
"numpy" = "numpy"
"pandas" = "pandas"
"plotly" = "plotly"
"questionary" = "questionary"
"semver" = "semver"
"tomlkit" = "tomlkit"
"typer" = "typer"
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
warn_return_any = true