-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
53 lines (45 loc) · 1.09 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
[project]
name = "debspawn"
description = "Debian package builder and build helper using systemd-nspawn"
authors = [
{name = "Matthias Klumpp", email = "[email protected]"},
]
license = {text="LGPL-3.0-or-later"}
readme = "README.md"
requires-python = ">=3.9"
dynamic = ['version']
[project.urls]
Documentation = "https://github.com/lkhq/debspawn"
Source = "https://github.com/lkhq/debspawn"
[build-system]
requires = ["setuptools", "wheel", "pkgconfig"]
build-backend = "setuptools.build_meta"
[tool.pylint.master]
[tool.pylint.format]
max-line-length = 120
[tool.pylint."messages control"]
disable = [
'C', 'R',
'fixme',
'unused-argument',
'global-statement',
'logging-format-interpolation',
'attribute-defined-outside-init',
'protected-access',
'broad-except',
'redefined-builtin',
'unspecified-encoding',
]
[tool.pylint.reports]
score = 'no'
[tool.isort]
py_version = 39
profile = "black"
multi_line_output = 3
skip_gitignore = true
length_sort = true
atomic = true
[tool.black]
target-version = ['py39']
line-length = 110
skip-string-normalization = true