-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
54 lines (39 loc) · 935 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
[flake8]
ignore = E203, E266, E501, W503, F403, F401, E741, C901
max-line-length = 160
max-complexity = 18
select = B,C,E,F,W,T4,B9
[bdist_wheel]
universal=0
[isort]
profile = black
[mypy]
python_version = 3.10
disallow_untyped_calls = False
disallow_untyped_defs = True
check_untyped_defs = True
exclude = tests/|setup.py|venv/|dev/
no_strict_optional = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-seaborn.*]
ignore_missing_imports = True
[mypy-fastcore.*]
ignore_missing_imports = True
[mypy-fastprogress.*]
ignore_missing_imports = True
[mypy-IPython.*]
ignore_missing_imports = True
[mypy-h5py.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-mpl_toolkits.*]
ignore_missing_imports = True
[mypy-mpl_scatter_density.*]
ignore_missing_imports = True
# Add the project source path
[mypy-muograph.*]
ignore_errors = False