-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
49 lines (42 loc) · 1002 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
42
43
44
45
46
47
48
49
[metadata]
# inluding the license file in the wheel
license_files = LICENSE
# including the readme file as description
long_description = file: README.md
long_description_content_type = text/markdown
[tool:pytest]
filterwarnings =
ignore:`np.bool` is a deprecated alias for the builtin `bool`:DeprecationWarning
[isort]
profile = black
line_length = 120
src_paths = pathfinding3d, test, examples
[coverage:run]
source = pathfinding3d
[coverage:report]
show_missing = True
exclude_also =
def __repr__
def __str__
def __lt__
def __eq__
[pylint]
disable =
missing-docstring,
invalid-name,
too-many-instance-attributes,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-few-public-methods,
too-many-arguments,
too-many-branches,
# many functions will naturally have unused arguments.
unused-argument,
[pylint.FORMAT]
max-line-length = 120
[mypy]
ignore_missing_imports = True
follow_imports = silent
show_error_codes = True
show_column_numbers = True