-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
84 lines (73 loc) · 2.05 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
# Copyright 2021 Canonical Ltd.
# See LICENSE file for licensing details.
[project]
name = "grafana-agent"
version = "0.0"
requires-python = "~=3.8"
dependencies = [
"cosl >= 0.0.50",
"ops > 2.5.0",
"pydantic < 2",
"requests",
"cryptography", # Pin prevents an error in the wheels due to crypto package moving to openssl 3.2.1
"jsonschema", # Pin prevents the machine charm error "ModuleNotFoundError: No module named 'rpds.rpds'"
# lib/charms/tempo_k8s/v1/charm_tracing
"opentelemetry-exporter-otlp-proto-http>=1.21.0",
]
[project.optional-dependencies]
dev = [
# Linting
"ruff",
"codespell",
# Static
"pyright",
# Unit
"pytest",
"coverage[toml]",
"responses",
"cosl",
"pydantic",
"ops[testing]",
"fs",
# Integration
"aiohttp",
"asyncstdlib",
"juju ~= 3.3.0", # libjuju needs to track the juju version
"websockets<14.0", # https://github.com/juju/python-libjuju/issues/1184 (fixed in juju 3.5.2.1)
"pytest", # trying to remove the pinning TODO: remove this comment
"prometheus-api-client", # TODO: ideally remove this
"pytest-operator",
"sh",
]
# Testing tools configuration
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
# Linting tools configuration
[tool.ruff]
line-length = 99
exclude = ["__pycache__", "*.egg_info"]
[tool.ruff.lint]
select = ["E", "W", "F", "C", "N", "R", "D", "I001"]
# Ignore D107 Missing docstring in __init__
ignore = ["C901", "D107", "E501", "RET504"]
[tool.ruff.lint.per-file-ignores]
# D100, D101, D102, D103: Ignore missing docstrings in tests
"tests/*" = ["D100","D101","D102","D103"]
[tool.ruff.lint.pydocstyle]
convention = "google"
# Static analysis tools configuration
[tool.pyright]
extraPaths = ["lib"]
pythonVersion = "3.8"
pythonPlatform = "All"
typeCheckingMode = "basic" # we'll work up to strict
reportIncompatibleMethodOverride = false
reportImportCycles = false
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--tb=native --verbose --capture=no --log-cli-level=INFO"
[tool.codespell]
skip = ".git,.tox,build,venv*"
ignore-words-list = "assertIn"