-
Notifications
You must be signed in to change notification settings - Fork 71
/
pyproject.toml
349 lines (326 loc) · 11.3 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
[project]
name = "charmcraft"
dynamic = ["version"]
description = "The main tool to build, upload, and develop in general the Juju charms."
readme = "README.md"
dependencies = [
"craft-application~=4.2",
"craft-cli>=2.3.0",
"craft-grammar>=2.0.0",
"craft-parts>=2.1.0",
"craft-providers>=2.0.0",
"craft-platforms~=0.3",
"craft-providers>=2.0.0",
"craft-store>=3.0.0",
"distro>=1.3.0",
"docker>=7.0.0",
"humanize>=2.6.0",
"jsonschema",
"jinja2",
"pydantic~=2.0",
"python-dateutil",
"pyyaml",
"requests",
"requests-toolbelt",
"snap-helpers",
"tabulate",
"pip>=24.2",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
[project.scripts]
charmcraft = "charmcraft.application.main:main"
[project.optional-dependencies]
dev = [ # When updating these, also update the dev/lint/types groups in renovate.
"coverage",
"freezegun",
"hypothesis",
"pyfakefs",
"pylint",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-check",
"pytest-subprocess",
"responses",
]
lint = [
"codespell[tomli]",
"yamllint",
]
types = [
"mypy[reports]~=1.11",
"pyright==1.1.383",
"types-python-dateutil",
"types-PyYAML",
"types-requests<2.31.0.20240312", # Frozen until we can get urllib3 v2
"types-setuptools",
"types-tabulate",
"types-urllib3",
]
apt = [
"python-apt>=2.4.0;sys_platform=='linux'"
]
docs = [
"canonical-sphinx[full]~=0.2",
"pyspelling",
"autodoc-pydantic~=2.0",
"sphinx-autobuild~=2024.2",
"sphinx-pydantic~=0.1",
"sphinx-toolbox~=3.5",
"sphinx-lint~=0.9",
"sphinxcontrib-details-directive",
"matplotlib",
]
[build-system]
requires = [
"setuptools>=67.7.2",
"setuptools_scm[toml]>=7.1"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "charmcraft/_version.py"
# the version comes from the latest annotated git tag formatted as 'X.Y.Z'
# standard version scheme:
# 'X.Y.Z.post<commits since tag>+g<hash>'
# scheme when no tags exist:
# '0.0.post<total commits>+g<hash>
# scheme when no tags exist and working dir is dirty:
# '0.0.post<total commits>+g<hash>.d<date formatted as %Y%m%d>'
version_scheme = "post-release"
# deviations from the default 'git describe' command:
# - only match annotated tags
# - only match tags formatted as 'X.Y.Z'
# - exclude '+dirty<hash>' suffix
git_describe_command = "git describe --long --match '[0-9]*.[0-9]*.[0-9]*' --exclude '*[^0-9.]*'"
[tool.setuptools.packages.find]
include = ["*craft*"]
namespaces = false
[tool.codespell]
ignore-words-list = "buildd,crate,keyserver,comandos,ro,dedent,dedented,tread,socio-economic"
skip = "requirements*.txt,.tox,.git,build,.*_cache,__pycache__,*.tar,*.snap,*.png,./node_modules,./docs/_build,.direnv,.venv,venv,.vscode,charmcraft.spec"
quiet-level = 3
check-filenames = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = "tests"
xfail_strict = true
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.coverage.run]
branch = true
parallel = true
omit = ["tests/**"]
[tool.coverage.report]
skip_empty = true
#fail_under = 80
[tool.pyright]
# strict = ["charmcraft"]
pythonVersion = "3.10"
pythonPlatform = "Linux"
ignore = [
"tools/measurements-viewer.py",
]
include = [
"charmcraft",
"tests/unit",
"tests/integration",
]
analyzeUnannotatedFunctions = false
reportArgumentType = "warning"
reportAttributeAccessIssue = "warning"
reportIncompatibleVariableOverride = "warning"
reportOptionalMemberAccess = "warning"
[tool.mypy]
python_version = "3.10"
packages = [
"charmcraft",
"tests.unit",
"tests.integration",
]
plugins = ["pydantic.mypy"]
exclude = [
"build",
"results",
"tests",
"tools",
]
warn_unused_configs = true
warn_redundant_casts = true
strict_equality = true
#warn_return_any = true
disallow_subclassing_any = true
disallow_untyped_decorators = true
#disallow_any_generics = true
[[tool.mypy.overrides]]
# Ignore typing errors in most legacy packages until we fix them.
module=[
"charmcraft.charm_builder",
"charmcraft.cmdbase",
"charmcraft.commands.extensions",
"charmcraft.commands.pack",
"charmcraft.commands.store",
"charmcraft.store.registry",
"charmcraft.store.store",
"charmcraft.extensions._utils",
"charmcraft.linters",
"charmcraft.models.charmcraft",
"charmcraft.package",
"charmcraft.providers",
]
ignore_errors = true
[[tool.mypy.overrides]]
module = ["charmcraft"]
disallow_untyped_defs = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = ["tests.*"]
strict = false
[tool.ruff]
line-length = 88
target-version = "py310"
extend-exclude = [
"docs",
"__pycache__",
"tools",
"snap/local",
"charmcraft/_version.py", # setuptools_scm generates old-style type annotations.
]
# Follow ST063 - Maintaining and updating linting specifications for updating these.
lint.select = [ # Base linting rule selections.
# See the internal document for discussion:
# https://docs.google.com/document/d/1i1n8pDmFmWi4wTDpk-JfnWCVUThPJiggyPi2DYwBBu4/edit
# All sections here are stable in ruff and shouldn't randomly introduce
# failures with ruff updates.
"F", # The rules built into Flake8
"E", "W", # pycodestyle errors and warnings
"I", # isort checking
"N", # PEP8 naming
"D", # Implement pydocstyle checking as well.
"UP", # Pyupgrade - note that some of are excluded below due to Python versions
"YTT", # flake8-2020: Misuse of `sys.version` and `sys.version_info`
"ANN", # Type annotations.
"BLE", # Do not catch blind exceptions
"FBT", # Disallow boolean positional arguments (make them keyword-only)
"B0", # Common mistakes and typos.
"A", # Shadowing built-ins.
"C4", # Encourage comprehensions, which tend to be faster than alternatives.
"T10", # Don't call the debugger in production code
"ISC", # Implicit string concatenation that can cause subtle issues
"ICN", # Only use common conventions for import aliases.
"INP", # Implicit namespace packages
"PYI", # Linting for type stubs.
"PT", # Pytest
"Q", # Consistent quotations
"RSE", # Errors on pytest raises.
"RET", # Simpler logic after return, raise, continue or break
"SIM", # Code simplification
"TCH004", # Remove imports from type-checking guard blocks if used at runtime
"TCH005", # Delete empty type-checking blocks
"ARG", # Unused arguments
"PTH", # Migrate to pathlib
"ERA", # Don't check in commented out code
"PGH", # Pygrep hooks
"PL", # Pylint
"TRY", # Cleaner try/except,
]
lint.extend-select = [
# Pyupgrade: https://github.com/charliermarsh/ruff#pyupgrade-up
"UP00", "UP01", "UP02", "UP030", "UP032", "UP033",
# "UP034", # Very new, not yet enabled in ruff 0.0.227
# Annotations: https://github.com/charliermarsh/ruff#lint.flake8-annotations-ann
"ANN0", # Type annotations for arguments other than `self` and `cls`
"ANN2", # Return type annotations
"B026", # Keyword arguments must come after starred arguments
# flake8-bandit: security testing. https://github.com/charliermarsh/ruff#flake8-bandit-s
# https://bandit.readthedocs.io/en/latest/plugins/index.html#complete-test-plugin-listing
"S101", "S102", # assert or exec
"S103", "S108", # File permissions and tempfiles - use #noqa to silence when appropriate.
"S104", # Network binds
"S105", "S106", "S107", # Hardcoded passwords
"S110", # try-except-pass (use contextlib.suppress instead)
"S113", # Requests calls without timeouts
"S3", # Serialising, deserialising, hashing, crypto, etc.
"S506", # Unsafe YAML load
"S508", "S509", # Insecure SNMP
"S701", # jinja2 templates without autoescape
"RUF001", "RUF002", "RUF003", # Ambiguous unicode characters
"RUF005", # Encourages unpacking rather than concatenation
"RUF008", # Do not use mutable default values for dataclass attributes
"RUF100", # #noqa directive that doesn't flag anything
]
lint.ignore = [
"ANN10", # Type annotations for `self` and `cls`
#"E203", # Whitespace before ":" -- Commented because ruff doesn't currently check E203
"E501", # Line too long (reason: black will automatically fix this for us)
"D105", # Missing docstring in magic method (reason: magic methods already have definitions)
"D107", # Missing docstring in __init__ (reason: documented in class docstring)
"D203", # 1 blank line required before class docstring (reason: pep257 default)
"D213", # Multi-line docstring summary should start at the second line (reason: pep257 default)
"D215", # Section underline is over-indented (reason: pep257 default)
"A003", # Class attribute shadowing built-in (reason: Class attributes don't often get bare references)
"SIM117", # Use a single `with` statement with multiple contexts instead of nested `with` statements
# (reason: this creates long lines that get wrapped and reduces readability)
# Ignored due to common usage in current code
"TRY003", # Avoid specifying long messages outside the exception class
# Charmcraft-specific ignores, to be removed as we modernise the code.
"ANN0", "ANN2",
"ARG001", "ARG002", "ARG005",
"BLE",
"FBT",
"N805", "N806",
"PGH003",
"PLR0912", "PLR0913", "PLR0915", "PLR1714", "PLR2004", "PLR5501",
"PLW2901",
"PT007", "PT011",
"PTH102", "PTH108", "PTH109", "PTH113", "PTH118", "PTH119", "PTH123",
"RET505", "RET506", "RET508",
"S108", "S113", "S324", "S701",
"SIM102",
]
[tool.ruff.lint.pep8-naming]
# Allow Pydantic's `@validator` decorator to trigger class method treatment.
classmethod-decorators = ["pydantic.validator"]
[tool.ruff.lint.pydocstyle]
ignore-decorators = [ # Functions with these decorators don't have to have docstrings.
"typing.overload", # Default configuration
# The next four are all variations on override, so child classes don't have to
# repeat parent classes' docstrings.
"overrides.override",
"overrides.overrides",
"typing.override",
"typing_extensions.override",
]
[tool.ruff.lint.per-file-ignores]
"tests/**.py" = [ # Some things we want for the moin project are unnecessary in tests.
"D", # Ignore docstring rules in tests
"ANN", # Ignore type annotations in tests
"INP001", # Tests don't need to be in packages.
"S101", # Allow assertions in tests
"S103", # Allow `os.chmod` setting a permissive mask `0o555` on file or directory
"S108", # Allow Probable insecure usage of temporary file or directory
"PLR0913", # Allow many arguments for test functions
# Charmcraft-specific ignores, to be removed as we modernise the code.
"A001", "A002",
"PT004", "PT012",
"S105", "S106",
]
# isort leaves init files alone by default, this makes ruff ignore them too.
"__init__.py" = ["I001"]