-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
57 lines (42 loc) Β· 953 Bytes
/
setup.cfg
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
[metadata]
description-file = README.md
[flake8]
select = C,E,F,W,B,B950
ignore = E741, W503, E501, E203, E722, E231, E402
max-line-length = 88
exclude =
workflow/
[mypy]
warn_return_any = True
warn_unreachable = True
check_untyped_defs = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-ufunclab.*]
ignore_missing_imports = True
[mypy-h5py.*]
ignore_missing_imports = True
[mypy-cv2.*]
ignore_missing_imports = True
[mypy-pygame.*]
ignore_missing_imports = True
[mypy-opencv_wrapper.*]
ignore_missing_imports = True
[mypy-openpose.*]
ignore_missing_imports = True
[mypy-ordered_set.*]
ignore_missing_imports = True
[mypy-lighttrack.*]
ignore_missing_imports = True
[mypy-imutils.*]
ignore_missing_imports = True
[mypy-click_log.*]
ignore_missing_imports = True
[isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88