-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.16 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
[tool.poetry]
name = "yaml-config-merger"
authors = ["Gabi Davar <grizzly.nyo@gmail.com>"]
readme = "README.md"
package-mode = false
#packages = [
# { include = "merger" }
#]
[tool.poetry.dependencies]
python = "^3.11"
kubernetes = "~31.0.0"
mergedeep = "~1.3.4"
PyYAML = "~6.0.2"
prometheus-client = "~0.21.0"
urllib3 = "~2.2.3"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
mypy = "^1.13.0"
ruff = "^0.7.3"
pytest = "<8"
coverage = { version = "~7.6.4", extras = ["toml"] }
pytest-asyncio = "~0.23.8"
pytest-kubernetes = "~0.3.1"
types-requests = "^2.32.0.20241016"
types-pyyaml = "^6.0.12.20240917"
memray = "^1.14.0"
[build-system]
requires = ["poetry-core>=1.8.3,<2"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py312"
[tool.ruff.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[tool.mypy]
python_version = "3.12"
files = "merger/*.py"
ignore_missing_imports = true
check_untyped_defs = true
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
cluster_timeout = 240
norecursedirs = "*.egg .eggs dist build docs .tox .git __pycache__"
testpaths = "tests"
[tool.coverage.run]
branch = true