forked from pythonarcade/arcade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
89 lines (70 loc) · 1.61 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[flake8]
# --- Description of what we ingore ---
# H405: multi line docstring summary not separated with an empty line
# W503: line break before binary operator
# E731 do not assign a lambda expression, use a def
# W291 trailing whitespace
# F811: redefinitiyon
ignore = H405, W503, F811, W291, E731
show-source = True
statistics = True
max-line-length = 120
exclude = venv,.venv,tests,build,doc,util,.mypy_cache,.pytest_cache,temp,bugs,setup.py
[tool:pytest]
norecursedirs =
doc
holding
arcade/examples
build
.venv
env
dist
temp
[build_sphinx]
source-dir = doc
build-dir = doc/build
all_files = 1
[upload_sphinx]
upload-dir = doc/build/html
[bdist_wheel]
universal=0
[options.entry_points]
pyinstaller40 =
hook-dirs = arcade.__pyinstaller:get_hook_dirs
[coverage:run]
source = arcade
omit =
./arcade/examples/*
./arcade/experimental/*
./env/*
./tests/*
./doc/*
./Win*/*
# Needed for mypy to find the config depending on version
[mypy:mypy]
[mypy]
exclude = /(perf_test|__pyinstaller|\..*)/$
[mypy-pyglet.*]
ignore_missing_imports = True
[mypy-pyglet_ffmpeg2]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
[mypy-pymunk]
ignore_missing_imports = True
[mypy-pymunkoptions]
ignore_missing_imports = True
[mypy-pytiled_parser]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-pyrr.*]
ignore_missing_imports = True
[mypy-shapely.*]
ignore_missing_imports = True
[mypy-pytiled_parser.*]
ignore_missing_imports = True
[mypy-dataclasses.*]
ignore_missing_imports = True