29 lines
923 B
TOML
29 lines
923 B
TOML
[project]
|
|
name = "property-map-video-tts"
|
|
version = "0.1.0"
|
|
description = "Qwen3-TTS narration generator for the homepage demo video."
|
|
requires-python = ">=3.12,<3.13"
|
|
dependencies = [
|
|
"qwen-tts>=0.1.1",
|
|
# Host driver is CUDA 12.4 (see `nvidia-smi`). torch 2.7+ dropped cu124
|
|
# wheels, so we cap below that and pull the cu124 build from PyTorch's
|
|
# own index (configured below). torchaudio must match torch's CUDA build
|
|
# — the PyPI default ships a CUDA 13 binary that fails to load
|
|
# libcudart.so.13 on this host.
|
|
"torch>=2.5,<2.7",
|
|
"torchaudio>=2.5,<2.7",
|
|
"soundfile>=0.12",
|
|
"numpy>=1.26",
|
|
]
|
|
|
|
[tool.uv]
|
|
environments = ["sys_platform == 'linux' and python_version < '3.13'"]
|
|
|
|
[tool.uv.sources]
|
|
torch = [{ index = "pytorch-cu124" }]
|
|
torchaudio = [{ index = "pytorch-cu124" }]
|
|
|
|
[[tool.uv.index]]
|
|
name = "pytorch-cu124"
|
|
url = "https://download.pytorch.org/whl/cu124"
|
|
explicit = true
|