forked from DLR-RM/rl-baselines3-zoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (36 loc) · 956 Bytes
/
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
[metadata]
# This includes the license file in the wheel.
license_files = LICENSE
[tool:pytest]
filterwarnings =
# Tensorboard warnings
ignore::DeprecationWarning:tensorboard
# Gym warnings
ignore::UserWarning:gym
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
serial
[pytype]
inputs = .
[flake8]
# line breaks before and after binary operators
ignore = W503,W504,E203,E231
# Ignore import not used when aliases are defined
per-file-ignores =
./rl_zoo3/__init__.py:F401
./rl_zoo3/plots/__init__.py:F401
./rl_zoo3/import_envs.py:F401
./rl_zoo3/plots/all_plots.py:E501
./rl_zoo3/plots/plot_train.py:E501
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
max-complexity = 15
# The GitHub editor is 127 chars wide
max-line-length = 127
[isort]
profile = black
line_length = 127
src_paths = stable_baselines3,rl_zoo3