Spaces:
Runtime error
Runtime error
File size: 706 Bytes
1bb1365 |
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 |
[build-system]
requires = ["setuptools>=65.5.3"]
build-backend = "setuptools.build_meta"
[project]
name = "seva"
version = "0.0.0"
requires-python = ">=3.10"
dependencies = [
"torch>=2.6.0",
"roma",
"viser",
"tyro",
"fire",
"ninja",
"gradio==5.17.0",
"einops",
"colorama",
"splines",
"kornia",
"open-clip-torch",
"diffusers",
"numpy==1.24.4",
"imageio[ffmpeg]",
"huggingface-hub",
"opencv-python",
]
[project.optional-dependencies]
dev = ["ruff", "ipdb", "pytest", "line_profiler", "pre-commit"]
[tool.setuptools.packages.find]
include = ["seva"]
[tool.pyright]
extraPaths = ["third_party/dust3r"]
[tool.ruff]
lint.ignore = ["E741"]
|