-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpyproject.toml
More file actions
131 lines (113 loc) · 2.58 KB
/
pyproject.toml
File metadata and controls
131 lines (113 loc) · 2.58 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# Copyright 2024-2025 New Vector Ltd
# Copyright 2025-2026 Element Creations Ltd
#
# SPDX-License-Identifier: AGPL-3.0-only
[project]
name = ""
description = ""
version = "0.1.0"
license = "AGPL-3.0-Only, Element Commercial"
readme = "README.md"
package-mode = false
requires-python = ">=3.11.7,<4.0"
dependencies = []
[tool.uv]
[dependency-groups]
dev = [
"ruff>=0.15.4",
"pytest>=8.4.2",
"mypy>=1.19.1",
"types-pyyaml>=6.0.12.20250915",
"types-cryptography>=3.3.23.2",
"types-jsonschema>=4.26.0.20260202",
"pytz>=2025.2",
"cryptography>=46.0.5",
"platformdirs>=4.9.2",
"aiohttp>=3.13.3",
"yamale>=6.1.0",
"typer>=0.24.1",
"jinja2>=3.1.6",
"checkov>=3.2.506",
"reuse>=6.2.0",
"signedjson>=1.1.4",
"ruamel-yaml>=0.19.1",
"types-pytz>=2025.2.0.20251108",
"towncrier>=25.8.0",
"spdx-tools>=0.8.3",
"semver>=3.0.4",
"jsonschema>=4.26",
"yamllint>=1.38.0",
"frozendict>=2.4.7",
"types-jsonschema>=4.26.0.20260202",
"rapidfuzz>=3.14.3",
"pyyaml>=6.0.3",
"ess-community-integration-tests"
]
[tool.uv.workspace]
members = ["packages/*", "tests"]
[tool.uv.sources]
ess-community-integration-tests = { workspace = true }
[tool.pytest.ini_options]
# we use asyncio-cooperative
addopts = "-p no:asyncio --strict-markers"
max_asyncio_tasks = 32
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# flake8-pytest-style
"PT",
]
[tool.towncrier]
package = ""
name = "ESS Community Helm Chart"
filename = "CHANGELOG.md"
# See artifacthub changes kinds https://artifacthub.io/docs/topics/annotations/helm/
# "When using the list of objects option the valid supported kinds are added, changed, deprecated, removed, fixed and security."
[[tool.towncrier.type]]
directory = "security"
name = "Security"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed / Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecated"
name = "Deprecated"
showcontent = true
[[tool.towncrier.type]]
directory = "added"
name = "Added"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "internal"
name = "Internal"
showcontent = true
[[tool.mypy.overrides]]
module = ["pyhelm3.*", "pytest_kubernetes.*"]
follow_untyped_imports = true