forked from pygame/pygame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (65 loc) · 1.5 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
[tox:tox]
envlist = py{36,37,38,39,310}
skipsdist = True
skip_missing_interpreters = True
[testenv]
deps =
numpy
setenv =
SDL_VIDEODRIVER=dummy
SDL_AUDIODRIVER=disk
passenv =
PORTMIDI_INC_PORTTIME
commands =
python -m buildconfig -auto
pip install .
python -m pygame.tests
[options.entry_points]
pyinstaller40 =
hook-dirs = pygame.__pyinstaller:get_hook_dirs
[isort]
multi_line_output = 3
line_length = 88
known_first_party = pygame
known_third_party = numpy, distutils, setuptools, sphinx
include_trailing_comma = True
src_paths = src_py
[pylint.MESSAGES CONTROL]
extension-pkg-whitelist=pygame
enable=
use-symbolic-message-instead,
useless-supression,
fixme,
disable=
missing-docstring,
invalid-name,
import-error,
fixme,
no-member,
wrong-import-order,
wrong-import-position,
useless-object-inheritance,
empty-docstring,
undefined-all-variable,
import-outside-toplevel,
global-statement,
global-variable-undefined,
no-name-in-module,
redefined-builtin,
redefined-outer-name,
broad-except,
too-many-lines,
too-many-locals,
raise-missing-from,
unused-wildcard-import,
attribute-defined-outside-init,
trailing-whitespace,
undefined-variable,
too-many-arguments,
too-many-branches,
too-few-public-methods,
too-many-instance-attributes,
super-with-arguments,
unused-import, # False positive because there are no __all__ sometime.
protected-access,
duplicate-code,