-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 951 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 951 Bytes
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 = "helm-values-manager"
version = "1.0.0"
description = "A schema-driven tool for managing Helm values with environment-specific configurations and secret management"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"typer>=0.16.0",
"rich>=14.0.0",
"pydantic>=2.10.6",
"pyyaml>=6.0.2",
]
[project.scripts]
helm-values-manager = "helm_values_manager.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"tox>=4.0.0",
"pre-commit>=3.0.0",
]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.mypy]
python_version = "3.9"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=helm_values_manager --cov-report=html --cov-report=term"