-
Notifications
You must be signed in to change notification settings - Fork 70
/
pyproject.toml
60 lines (53 loc) · 1.18 KB
/
pyproject.toml
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
[tool.nbqa.exclude]
mypy = "case_studies"
[tool.mypy]
check_untyped_defs = true
show_column_numbers = true
strict_optional = true
warn_return_any = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_configs = true
strict_equality = true
# Strict mode:
# disallow_untyped_calls = true
# disallow_untyped_defs = true
# disallow_any_generics = true
# disallow_incomplete_defs = true
# warn_unreachable = true
# warn_unused_ignores = true
exclude = ["case_studies","tests","docs","venv"]
[[tool.mypy.overrides]]
module = [
"ipfshttpclient",
"pandas",
"multicall",
"requests",
"requests.*",
"matplotlib",
"matplotlib.*",
"seaborn",
"plotly",
"plotly.*",
"scipy",
"scipy.*",
"sklearn",
"sklearn.*",
"tqdm.notebook",
"papermill",
"setuptools",
"urllib3.*",
"docutils",
"docutils.*",
"bs4.*"
]
ignore_missing_imports = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if __name__ == .__main__.:"
]