-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (64 loc) · 1.74 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
[tool.poetry]
name = "raspberry-pi"
version = "0.3.0"
description = "Setup and configuration of my own Raspberry Pi fleet via Ansible Collection."
authors = ["Federico Jaureguialzo <fedejaure@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/fedejaure/dev-setup"
repository = "https://github.com/fedejaure/dev-setup"
documentation = "https://dev-setup.readthedocs.io"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/fedejaure/dev-setup/issues"
[tool.poetry.dependencies]
python = "<3.11,>=3.10"
ansible = "^6.4.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.20.0"
invoke = "^1.7.3"
flake8 = "^4.0.1"
flakeheaven = "^3.0.0"
flake8-builtins = "^1.5.3"
flake8-blind-except = "^0.2.1"
flake8-logging-format = "^0.8.1"
flake8-bugbear = "^22.9.23"
flake8-annotations = "^2.9.1"
flake8-docstrings = "^1.6.0"
flake8-bandit = "^3.0.0"
darglint = "^1.8.0"
pylint = "^2.14.5"
isort = "^5.9.3"
black = "^22.8"
safety = "^2.3.1"
mypy = "^0.982"
bump2version = "^1.0.1"
yamllint = "^1.28.0"
ansible-lint = "^6.7.0"
molecule = {extras = ["docker"], version = "^4.0.1"}
[tool.flakeheaven]
format = "grouped"
max_line_length = 99
show_source = true
docstring-convention = "google"
extended_default_ignore = []
[tool.flakeheaven.plugins]
pyflakes = ["+*"]
pycodestyle = ["+*"]
mccabe = ["+*"]
"flake8-*" = ["+*"]
pylint = ["-C????", "-E????", "+F????", "+I????", "-R????", "-W????"]
darglint = ["+*"]
[tool.flakehell.exceptions."tests/"]
flake8-bandit = ["-S101"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 99
known_third_party = ["invoke", "nox"]
[tool.black]
line-length = 99
target-version = ["py37"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"