diffusion-speech-360h / pyproject.toml
ntt123's picture
generate requirements file
b2bfb1d
raw
history blame
514 Bytes
[project]
name = "diffusion-speech-360h"
version = "0.1.0"
description = "A simple diffusion-based text to speech model"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"g2p-en>=2.1.0",
"gradio>=5.9.1",
"nltk>=3.9.1",
"soundfile>=0.12.1",
"torch>=2.5.1",
"vocos>=0.1.0",
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", marker = "platform_system != 'Darwin'"},
]