-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 1.59 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "rhiza"
version = "0.13.4"
description = "Reusable configuration templates for modern Python projects"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Thomas Schmelzer" }
]
keywords = ["templates", "configuration", "taskfile", "ci", "ruff"]
classifiers = [
"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 = [
"loguru>=0.7.3",
"typer>=0.20.0",
"PyYAML>=6.0.3,<7",
"jinja2>=3.1.0",
"rich>=14.3.3",
]
[project.urls]
Homepage = "https://github.com/jebel-quant/rhiza-cli"
Repository = "https://github.com/jebel-quant/rhiza-cli"
Issues = "https://github.com/jebel-quant/rhiza-cli/issues-cli"
[project.optional-dependencies]
tools = ["rhiza-tools>=0.1.2"]
[tool.hatch.build.targets.wheel]
# Use src-layout: package code is under src/config
packages = ["src/rhiza"]
[tool.deptry.package_module_name_map]
PyYAML = "yaml"
loguru = "loguru"
typer = "typer"
jinja2 = "jinja2"
rhiza-tools = "rhiza_tools"
[project.scripts]
rhiza = "rhiza.__main__:app"
[tool.deptry.per_rule_ignores]
DEP002 = ["rhiza-tools"]
[dependency-groups]
dev = [
"hypothesis>=6.151.9",
]