-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.27 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 = "chezmoi"
version = "0.1.0"
description = "Yoshikage Kira's dotfiles, managed with chezmoi"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ansible>=13.3.0",
"ansible-runner>=2.4.2",
"gitpython>=3.1.46",
"platformdirs>=4.5.1",
"questionary>=2.1.1",
]
[tool.mypy]
strict = true
disallow_any_decorated = false
disallow_any_explicit = false
disallow_any_expr = false
disallow_any_generics = true
disallow_any_unimported = true
disallow_subclassing_any = true
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
no_implicit_reexport = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
exclude = '(venv|\.venv)/'
[[tool.mypy.overrides]]
module = "ansible_runner.*"
ignore_missing_imports = true
[tool.ruff]
line-length = 160
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 120
[tool.docstrfmt]
line-length = 120
[dependency-groups]
linting = ["docstrfmt>=2.0.2", "ruff>=0.15.0"]
typing = [
"mypy>=1.19.1",
"types-pyyaml>=6.0.12.20250915",
]