-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
65 lines (44 loc) · 1012 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
59
60
61
62
63
64
65
[isort]
profile=black
[tool:pytest]
testpaths = lyra/lyra/tests
[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-altair.*]
ignore_missing_imports = True
[mypy-azure.*]
ignore_missing_imports = True
follow_imports = skip
[mypy-brotli_asgi.*]
ignore_missing_imports = True
[mypy-celery.*]
ignore_missing_imports = True
[mypy-geopandas.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-networkx.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-pint.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-shapely.*]
ignore_missing_imports = True
[mypy-topojson.*]
ignore_missing_imports = True
[mypy-lyra.tests.*]
ignore_errors = True
[pydantic-mypy]
init_typed = True
warn_untyped_fields = True