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