-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
107 lines (96 loc) · 2.13 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "helm-values-manager"
version = "0.1.0"
description = "A Helm plugin to manage values and secrets across environments"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Ritwik G", email = "ritwik@zipstack.com" },
]
urls = { Homepage = "https://github.com/zipstack/helm-values-manager" }
dependencies = [
"typer>=0.15.1,<0.16.0",
"jsonschema>=4.21.1",
"pyyaml>=6.0.2",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=24.1.1",
"isort>=5.13.2",
"flake8>=7.0.0",
"flake8-docstrings>=1.7.0",
"tox>=4.12.1",
"pre-commit>=4.0.0",
"types-jsonschema>=4.21.0.0",
]
[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 120
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v"
[tool.coverage.run]
source = ["helm_values_manager"]
omit = [
"tests/*",
"helm_values_manager/schemas/*"
]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"pass",
"raise ImportError",
]
[tool.coverage.xml]
output = "coverage.xml"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39, py310, py311, py312
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
"""
[tool.flake8]
max-line-length = 120
exclude = [
".tox",
".git",
"__pycache__",
"build",
"dist",
"*.egg",
"venv",
]
extend-ignore = ["E203", "W503"]