-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.12 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
[project]
name = "laniakea-spark"
description = "Generic distributed job runner for Laniakea."
authors = [
{name = "Matthias Klumpp", email = "matthias@tenstral.net"},
]
license = {text="LGPL-3.0-or-later"}
readme = "README.md"
requires-python = ">=3.9"
dynamic = ['version']
[project.urls]
Documentation = "https://github.com/lkhq/laniakea-spark"
Source = "https://github.com/lkhq/laniakea-spark"
[build-system]
requires = ["setuptools", "wheel", "pkgconfig"]
build-backend = "setuptools.build_meta"
[tool.pylint.master]
[tool.pylint.format]
max-line-length = 100
[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',
]
[tool.pylint.reports]
score = 'no'
[tool.pylint.typecheck]
ignored-modules = [
'zmq',
]
[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 = 100
skip-string-normalization = true