Spaces:
Runtime error
Runtime error
File size: 1,256 Bytes
3e165b2 |
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 |
[project]
name = "visualizr"
description = "Video Generator part of the Chatacter Backend"
version = "0.1.0"
readme = "README.md"
requires-python = "~=3.10"
dependencies = [
"espnet>=202412",
"gfpgan>=1.3.8",
"gradio[mcp]>=5.34.0",
"librosa>=0.9.2",
"loguru>=0.7.3",
"moviepy>=1.0.3",
"python-speech-features>=0.6",
"pytorch-lightning>=2.5.1.post0",
"realesrgan>=0.3.0",
"spaces>=0.37.0",
"torch>=2.6.0",
"torchaudio>=2.6.0",
"torchmetrics>=1.7.1",
"torchvision>=0.21.0",
"tqdm>=4.67.1",
"transformers>=4.52.2",
]
[project.scripts]
visualizr = "visualizr.__main__:main"
[build-system]
build-backend = "uv_build"
requires = ["uv_build"]
[dependency-groups]
dev = [
"huggingface-hub[cli,hf-transfer]>=0.33.0",
"pyrefly>=0.19.2",
"ruff>=0.11.10",
"ty>=0.0.1a6",
"watchfiles>=1.0.5",
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cu124", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]
torchaudio = [
{ index = "pytorch-cu124", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]
torchvision = [
{ index = "pytorch-cu124", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]
[[tool.uv.index]]
explicit = true
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
|