File size: 614 Bytes
b678162 | 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 | [project]
name = "dynamic3d"
version = "0.9"
[tool.basedpyright]
"exclude" = [
".git",
".venv*",
"**/__pycache__",
"experiments_out",
"exp",
"data"
]
typeCheckingMode = "basic"
reportDuplicateImport = "none"
reportUnusedImport = "none"
reportPossiblyUnboundVariable = "none"
reportUndefinedVariable = "none"
reportUnusedVariable = "none"
extraPaths = ["dust3r"]
[tool.ruff]
exclude = [
".git",
".venv*",
"**/__pycache__",
"experiments_out",
"exp",
"data"
]
ignore = [
"F722", # Forward annotation false positive from jaxtyping. Should be caught by pyright.
]
|