forked from PyLops/pylops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
executable file
·50 lines (36 loc) · 824 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
[aliases]
test=pytest
[tool:pytest]
addopts = --verbose
python_files = pytests/*.py
[flake8]
ignore = E203, E501, W503, E402
per-file-ignores =
__init__.py: F401, F403, F405
max-line-length = 88
# mypy global options
[mypy]
plugins = numpy.typing.mypy_plugin
ignore_errors = False
allow_redefinition = True
# mypy per-module options
[mypy-IPython.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-numba.*]
ignore_missing_imports = True
[mypy-pyfftw.*]
ignore_missing_imports = True
[mypy-pywt.*]
ignore_missing_imports = True
[mypy-spgl1.*]
ignore_missing_imports = True
[mypy-skfmm.*]
ignore_missing_imports = True
[mypy-devito.*]
ignore_missing_imports = True
[mypy-examples.*] # devito-examples
ignore_missing_imports = True
[mypy-cupy.*]
ignore_missing_imports = True