forked from inducer/loopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
68 lines (49 loc) · 1.22 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
[flake8]
ignore = E126,E127,E128,E123,E226,E241,E242,E265,N802,W503,E402,N814,N817,W504
max-line-length=85
exclude=
loopy/target/c/compyte/ndarray,
loopy/target/c/compyte/array.py
inline-quotes = "
docstring-quotes = """
multiline-quotes = """
per-file-ignores =
test/test_loopy.py:B023,C408,
test/*.py:C408,
proto-tests/*.py:C408
# enable-flake8-bugbear
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ELLIPSIS
[mypy]
python_version = 3.8
warn_unused_ignores = True
exclude = (?x)(
loopy/target/c/compyte/ndarray/.*
| loopy/target/c/compyte/array\.py
)
[mypy-islpy.*]
ignore_missing_imports = True
[mypy-pymbolic.*]
ignore_missing_imports = True
[mypy-cgen.*]
ignore_missing_imports = True
[mypy-genpy.*]
ignore_missing_imports = True
[mypy-pyopencl.*]
ignore_missing_imports = True
[mypy-pygments.*]
ignore_missing_imports = True
[mypy-colorama.*]
ignore_missing_imports = True
[mypy-codepy.*]
ignore_missing_imports = True
[mypy-mako.*]
ignore_missing_imports = True
[mypy-fparser.*]
ignore_missing_imports = True
[mypy-ply.*]
ignore_missing_imports = True
[mypy-IPython.*]
ignore_missing_imports = True
[mypy-pycuda.*]
ignore_missing_imports = True