-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 loc) · 811 Bytes
/
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
[tool.black]
line-length = 100
extend-exclude = "notebooks"
[tool.isort]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
profile = "black"
line_length = 100
extend_skip_glob = ["notebooks/*"]
[tool.mypy]
warn_unused_configs = true
show_error_codes = true
check_untyped_defs = true
no_implicit_optional = true
disallow_untyped_defs = false
strict_equality = true
[[tool.mypy.overrides]]
module = [
"cliffordlayers.*",
"clifford.*",
"coronary_mesh_convolution.*",
"dgl.*",
"e3nn.*",
"matplotlib.*",
"mlflow.*",
"mock.*",
"opt_einsum.*",
"pandas",
"rope.*",
"scipy.*",
"seaborn",
"setuptools.*",
"torch.*",
"torch_ema.*",
"torch_geometric.*",
"torch_scatter.*",
"xformers.*",
]
ignore_missing_imports = true