forked from MIT-REALM/neural_clbf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
110 lines (86 loc) · 2.15 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[mypy]
exclude = integration/devel/*
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-casadi.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-seaborn.*]
ignore_missing_imports = True
[mypy-tqdm.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-qpth.*]
ignore_missing_imports = True
[mypy-gurobipy.*]
ignore_missing_imports = True
[mypy-cvxpy.*]
ignore_missing_imports = True
[mypy-cvxpylayers.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-shapely.*]
ignore_missing_imports = True
[mypy-tf.*]
ignore_missing_imports = True
[mypy-rospy.*]
ignore_missing_imports = True
[mypy-sensor_msgs.*]
ignore_missing_imports = True
[mypy-geometry_msgs.*]
ignore_missing_imports = True
[mypy-celluloid.*]
ignore_missing_imports = True
[mypy-aerobench.*]
ignore_missing_imports = True
[tool:pytest]
python_files = test_*.py
norecursedirs =
.git
dist
build
integration
addopts =
--strict-markers
--doctest-modules
--durations=0
--ignore=neural_clbf/evaluation/turtle2d/eval_hw.py
--ignore=neural_clbf/experiments/turtlebot_hw_obs_feedback_experiment.py
--ignore=neural_clbf/experiments/turtlebot_hw_state_feedback_experiment.py
filterwarnings =
ignore::DeprecationWarning
[coverage:report]
exclude_lines =
pragma: no-cover
pass
[tool:brunette]
exclude = matlab_export*
[flake8]
max-line-length = 88
exclude = .tox,*.egg,build,temp,matlab_export*,devel
select = E,W,F
doctests = True
verbose = 2
# https://pep8.readthedocs.io/en/latest/intro.html#error-codes
format = pylint
# see: https://www.flake8rules.com/
ignore =
E731 # Do not assign a lambda expression, use a def
W504 # Line break occurred after a binary operator
W605 # Invalid escape sequence 'x'
E203 # whitespace before : (black puts this here)
W503 # line break before binary operator (black does this)
# setup.cfg or tox.ini
[check-manifest]
ignore =
*.yml
.github
.github/*
[metadata]
license_file = LICENSE
description-file = README.md
# long_description = file:README.md
# long_description_content_type = text/markdown