-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
50 lines (35 loc) · 908 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
[isort]
profile=black
known_first_party=stormpiper
skip_glob=_no_git*
[tool:pytest]
testpaths = stormpiper/stormpiper/tests
asyncio_mode=strict
filterwarnings =
ignore:distutils Version classes are deprecated:DeprecationWarning
ignore:Using or importing the ABCs from:DeprecationWarning
[mypy]
plugins = pydantic.mypy,sqlmypy
strict_optional = True
check_untyped_defs = True
disallow_incomplete_defs = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
[mypy-brotli_asgi.*]
ignore_missing_imports = True
[mypy-celery.*]
ignore_missing_imports = True
[mypy-ee.*]
ignore_missing_imports = True
[mypy-geopandas.*]
ignore_missing_imports = True
[mypy-networkx.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-sqlalchemy.ext.asyncio.*]
ignore_missing_imports = True
[pydantic-mypy]
init_typed = True
warn_untyped_fields = True