forked from AI-Planning/pddl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (44 loc) · 786 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
50
51
52
53
54
55
56
57
58
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[metadata]
license_file = LICENSE
[flake8]
ignore = W503
exclude =
.tox,
.git,
__pycache__,
build,
dist,
tests/fixtures/*,
*.md,
*.pyc,
*.egg-info,
.cache,
.eggs,
pddl/__init__.py,
max-complexity = 10
max-line-length = 120
per-file-ignores =
pddl/logic/__init__.py:F401
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[mypy]
python_version = 3.8
strict_optional = True
# Per-module options:
[mypy-lark]
ignore_missing_imports = True
# Per-module options for tests dir:
[mypy-pytest]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-mistune.*]
ignore_missing_imports = True