-
-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 841 Bytes
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
[tool.flake8]
max-line-length = 99
max-complexity=10
statistics = true
count = true
exclude = [".git", "__pycache__"]
per-file-ignores = ["__init__.py:F401"]
[tool.pylint.DESIGN]
min-public-methods = 1
max-args = 10
max-attributes = 10
max-positional-arguments = 10
[tool.pylint.TYPECHECK]
generated-members = ["av", "cv2"]
[[tool.mypy.overrides]]
module = [
"fastcluster.*",
"ffmpeg.*",
"ffmpy.*",
"h5py.*",
"keras.*",
"numexpr.*",
"pexpect.*",
"pynvml.*",
"scipy.*",
"sklearn.*",
"tensorboard.*",
"torch.*",
"torchvision.*",
"tqdm.*",
"win32console.*",
"winpty.*",]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
filterwarnings = ["ignore::DeprecationWarning:keras.*:"]
[tool.pyright]
reportUnsupportedDunderAll = false