23 lines
445 B
TOML
23 lines
445 B
TOML
[project]
|
|
name = "voice-cli-tts"
|
|
version = "0.1.0"
|
|
description = "TTS dependencies for voice-cli"
|
|
requires-python = ">=3.10,<3.11"
|
|
dependencies = [
|
|
"torch>=2.8",
|
|
"torchaudio>=2.8",
|
|
"numpy>=1.19.0,<2.0.0",
|
|
"soundfile>=0.12",
|
|
"huggingface-hub>=0.34.4",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = []
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["tts_service.py"]
|