-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
74 lines (56 loc) · 1.04 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
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[metadata]
license_file = LICENSE
[flake8]
ignore = W503,D202
exclude =
.tox,
.git,
__pycache__,
build,
dist,
tests/fixtures/*,
*.md,
*.pyc,
*.egg-info,
.cache,
.eggs,
gym_sapientino/__init__.py,
scripts/whitelist.py
max-complexity = 10
max-line-length = 120
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[black]
exclude = "scripts/whitelist.py
[mypy]
python_version = 3.9
strict_optional = True
# Per-module options:
[mypy-pygame.*]
ignore_missing_imports = True
[mypy-gym.*]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-seaborn.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
# Per-module options for tests dir:
[mypy-pytest]
ignore_missing_imports = True
# Per-script options
[mypy-scripts/whitelist]
ignore_errors = True