-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
141 lines (117 loc) · 2.33 KB
/
pyproject.toml
File metadata and controls
141 lines (117 loc) · 2.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
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
132
133
134
135
136
137
138
139
140
141
# Copyright 2026 Canonical Ltd.
# See LICENSE file for licensing details.
[project]
name = "git-ubuntu-operator"
version = "1.0.0"
requires-python = ">=3.12"
# Charm code dependencies
dependencies = [
"charmlibs-apt>=1.0.0",
"charmlibs-pathops>=1.0.0",
"ops~=2.17",
]
[dependency-groups]
charmlibs = [
"charmlibs-apt>=1.0.0",
"charmlibs-pathops>=1.0.0",
]
format = [
"black",
"isort",
]
lint = [
"mypy",
"isort",
"black",
"flake8-docstrings",
"flake8-docstrings-complete",
"flake8-builtins",
"flake8-test-docs",
"pep8-naming",
"codespell",
"pylint",
"pyproject-flake8",
"pydocstyle",
"types-PyYAML",
]
unit = [
"pytest",
"coverage[toml]",
"ops[testing]",
]
coverage-report = [
"pytest",
"coverage[toml]",
"ops[testing]",
]
static = [
"pyright",
"ops[testing]",
]
integration = [
"pytest",
"jubilant~=1.0",
]
# 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"
[tool.black]
line-length = 99
target-version = ["py312"]
[tool.flake8]
max-line-length = 99
max-doc-length = 99
# Ignore for compatibility with black
ignore = ["W503", "E501", "TDO002"]
[tool.isort]
line_length = 99
profile = "black"
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
explicit_package_bases = true
ignore_missing_imports = true
namespace_packages = true
[[tool.mypy.overrides]]
disallow_untyped_defs = false
module = "tests.*"
# 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"]
[tool.pylint."MESSAGES CONTROL"]
disable = [
"too-many-instance-attributes",
"too-many-arguments",
"too-many-positional-arguments",
"too-many-locals",
"too-many-boolean-expressions",
]