-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
145 lines (128 loc) · 3.55 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
[build-system]
requires = ["setuptools>=62.3"]
build-backend = "setuptools.build_meta"
[project]
name = "xknxproject"
authors = [
{ name = "Marvin Wichmann", email = "me@marvin-wichmann.de" },
{ name = "Matthias Alphart", email = "farmio@alphart.net" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
dependencies = ["pyzipper>=0.3.6", "striprtf>=0.0.26"]
description = "A library to gather information from ETS project files used for KNX"
dynamic = ["version"]
keywords = ["KNX", "ETS", "Home Assistant"]
license = { text = "GPL-2.0-only" }
readme = "README.md"
requires-python = ">=3.9.0"
[project.urls]
homepage = "https://github.com/XKNX/xknxproject"
[tool.setuptools.dynamic]
version = { attr = "xknxproject.__version__.__version__" }
[tool.setuptools.packages.find]
include = ["xknxproject*"]
[tool.mypy]
python_version = "3.9"
strict = true
show_error_codes = true
ignore_missing_imports = true
implicit_reexport = true
warn_unreachable = true
[tool.pylint.master]
ignore = "test"
persistent = "no"
reports = "no"
[tool.pylint.message_control]
# Reasons disabled:
# format - handled by ruff
# locally-disabled - it spams too much
# duplicate-code - unavoidable
# cyclic-import - doesn't test if both import on load
# unused-argument - generic callbacks and setup methods create a lot of warnings
# raise-missing-from - we use this in order to avoid too generic exception to the user
# too-many-* - are not enforced for the sake of readability
# too-few-* - same as too-many-*
# abstract-method - with intro of async there are always methods missing
# inconsistent-return-statements - doesn't handle raise
# too-many-ancestors - it's too strict.
# wrong-import-order - isort guards this
# fixme - TODO
disable = [
"format",
"abstract-method",
"cyclic-import",
"duplicate-code",
"fixme",
"inconsistent-return-statements",
"locally-disabled",
"not-context-manager",
"raise-missing-from",
"too-few-public-methods",
"too-many-ancestors",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-lines",
"too-many-locals",
"too-many-positional-arguments",
"too-many-public-methods",
"too-many-return-statements",
"too-many-statements",
"too-many-boolean-expressions",
"unused-argument",
"wrong-import-order",
]
# disabled for tests via command line options in Makefile:
# - no-self-use
# - protected-access
# - abstract-class-instantiated
enable = ["use-symbolic-message-instead"]
[tool.pylint.format]
expected-line-ending-format = "LF"
[tool.pylint.reports]
score = "no"
output-format = "colorized"
[tool.pytest.ini_options]
testpaths = "test"
[tool.ruff]
lint.select = [
"A", # builtins shadowing
"ASYNC", # async
"B", # bugbear
"C4", # comprehensions
"D", # pydocstyle
"E", # pycodestyle
"F", # pyflakes
"G", # logging
"I", # isort
"LOG", # logging
"PTH", # pathlib
"RUF", # ruff specific
"SLF", # private member access
"SIM", # simplify
"T20", # print
"UP", # pyupgrade
"W", # pydocstyle warning
]
lint.ignore = [
"D202",
"D203",
"D212",
"E501", # line too long
"SIM102", # collapsible-if
"SIM105", #suppressible-exception
]
extend-exclude = ["script"]
[tool.ruff.lint.isort]
force-sort-within-sections = true
combine-as-imports = true
[tool.ruff.lint.per-file-ignores]
"test/*" = [
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"SLF", # private member access
"SIM117", # multiple-with-statements
]