-
Notifications
You must be signed in to change notification settings - Fork 81
/
pyproject.toml
38 lines (32 loc) · 1.15 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "versioneer-518"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.pylint.BASIC]
class-const-naming-style = "snake_case" # checked since pylint 2.7.3
[tool.pylint.IMPORTS]
allow-any-import-level = []
[tool.pylint.SIMILARITIES]
min-similarity-lines = 15 # Minimum lines number of a similarity.
ignore-comments = "yes" # Ignore comments when computing similarities.
ignore-docstrings = "yes" # Ignore docstrings when computing similarities.
ignore-imports = "yes" # Ignore imports when computing similarities.
[tool.pylint.TYPECHECK]
generated-members = ["numpy.*", "torch.*", "cv2.*", "openpifpaf.functional.*"]
ignored-modules = ["openpifpaf.functional"]
disable = [
"missing-docstring",
"too-many-arguments",
"too-many-instance-attributes",
"too-many-locals",
"too-few-public-methods",
"unsubscriptable-object",
"not-callable", # for torch tensors
"invalid-name",
"logging-format-interpolation",
]
[tool.pylint.FORMAT]
max-line-length = 120