-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (80 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
91 lines (80 loc) · 2.08 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
# Copyright 2021 Canonical Ltd.
# See LICENSE file for licensing details.
[project]
name = "alertmanager-k8s"
version = "0.0"
requires-python = "~=3.8"
dependencies = [
"ops",
"pyyaml",
"lightkube>=0.11", # observability_libs
"lightkube-models", # observability_libs
"jsonschema", # traefik_k8s, tls_certificates
"cryptography", # tls_certificates
"pydantic>=2", # traefik_k8s.v2.ingress
"opentelemetry-exporter-otlp-proto-http>=1.21.0", # tracing
"tenacity",
"cosl",
"charmed-service-mesh-helpers>=0.2.0",
"lightkube-extensions",
]
[project.optional-dependencies]
dev = [
# Linting
"ruff",
"codespell",
# Static
"pyright<1.1.399", # 1.1.399 vendors typeshed that dropped Python 3.8 support
# Unit
"pytest",
"coverage[toml]",
"deepdiff",
"hypothesis",
"validators>=0.21.2",
"ops[testing]",
"pytest-interface-tester>0.3",
# Integration
"juju<=3.3.0,>=3.0",
"websockets<14.0",
"pytest-operator",
"pytest-httpserver",
"sh",
]
# Testing tools configuration
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
# Formatting tools configuration
[tool.black]
line-length = 99
target-version = ["py38"]
# Linting tools configuration
[tool.ruff]
line-length = 99
extend-exclude = ["__pycache__", "*.egg_info"]
[tool.ruff.lint]
select = ["E", "W", "F", "C", "N", "R", "D", "I001"]
# Ignore E501 because using black creates errors with this
# Ignore D107 Missing docstring in __init__
ignore = ["E501", "D107", "N818", "RET504"]
# D100, D101, D102, D103: Ignore missing docstrings in tests
per-file-ignores = {"tests/*" = ["D100","D101","D102","D103"]}
[tool.ruff.lint.pydocstyle]
convention = "google"
# Static analysis tools configuration
[tool.pyright]
extraPaths = ["src", "lib"]
pythonVersion = "3.8"
pythonPlatform = "All"
exclude = [
"tests/integration/remote_configuration_tester/**",
]
[tool.pytest.ini_options]
minversion = "6.0"
log_cli_level = "INFO"
asyncio_mode = "auto"
addopts = "--tb=native --verbose --capture=no --log-cli-level=INFO"
[tool.codespell]
skip = ".git,.tox,build,venv*"
ignore-words-list = "assertIn"