-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (39 loc) · 969 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nyl"
version = "0.0.0" # sed'ed on publish in CI
description = "Advanced templating engine for Kubernetes and GitOps."
authors = [
{name = "Niklas Rosenstein", email = "[email protected]"},
]
dependencies = [
"bcrypt>=4.2.0",
"databind>=4.5.2",
"filelock>=3.15.4",
"jinja2>=3.1.4",
"kubernetes>=30.1.0",
"loguru>=0.7.2",
"nr-stream>=1.1.5",
"pyyaml>=6.0.1",
"requests>=2.32.3",
"stablehash>=0.2.1,<0.3.0",
"structured-templates>=0.1.1",
"typer>=0.12.3",
"typing-extensions>=4.12.2",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
nyl = "nyl.commands:app"
[tool.uv]
dev-dependencies = [
"kubernetes-stubs>=22.6.0.post1",
"mypy>=1.13.0",
"pytest>=8.2.2",
"ruff>=0.7.2",
"types-pyyaml>=6.0.12.20240311",
"types-requests>=2.32.0.20240712",
]