-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.33 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
[project]
name = "ubuntu-desktop-versions-operator"
dynamic = ["version"]
requires-python = ">=3.10"
# Required group: these are all dependencies required to run the charm.
dependencies = [
"charmlibs-apt>=1.0.0.post0",
"ops~=3.0",
"pydantic",
]
[dependency-groups]
# Dependencies required to run all the charm's tests.
test = ["ops[testing]", "jubilant~=1.0", "pytest", "coverage[toml]"]
# Development tools for linting, formatting, and type checking.
dev = ["tox", "ruff", "codespell", "pyright"]
# Testing tools configuration
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
minversion = "6.0"
log_cli_level = "INFO"
pythonpath = ["src", "lib", "."]
# Linting tools configuration
[tool.ruff]
line-length = 99
lint.select = ["E", "W", "F", "C", "N", "D", "I001"]
lint.extend-ignore = [
"D105",
"D107",
"D203",
"D204",
"D213",
"D215",
"D400",
"D404",
"D406",
"D407",
"D408",
"D409",
"D413",
]
lint.per-file-ignores = { "tests/*" = ["D100", "D101", "D102", "D103", "D104"] }
extend-exclude = ["__pycache__", "*.egg_info"]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.codespell]
skip = "build,lib,venv,icon.svg,.tox,.git,.mypy_cache,.ruff_cache,.coverage"
[tool.pyright]
include = ["src/**.py", "lib/**.py"]
extraPaths = ["./lib"]