forked from inducer/pyopencl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (37 loc) · 971 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
[flake8]
ignore = E126,E127,E128,E123,E226,E241,E242,E265,W503,E402
max-line-length=85
exclude=pyopencl/compyte/ndarray,pyopencl/compyte/array.py,gl_particle_animation.py,gl_interop_demo.py
per-file-ignores=
examples/pi-monte-carlo.py:N,B
examples/black-hole-accretion.py:N
examples/n-body.py:N
inline-quotes = "
docstring-quotes = """
multiline-quotes = """
# enable-flake8-bugbear
[mypy]
warn_unused_ignores = True
exclude = (?x)(
pyopencl/compyte
)
[mypy-appdirs.*]
ignore_missing_imports = True
[mypy-IPython.*]
ignore_missing_imports = True
[mypy-OpenGL.*]
ignore_missing_imports = True
[mypy-mako.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-pyfmmlib.*]
ignore_missing_imports = True
[mypy-pyopencl._cl.*]
ignore_missing_imports = True
[mypy-pyopencl.compyte.*]
follow_imports = skip
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True