File size: 887 Bytes
22a6d48 | 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 | [project]
name = "stts2-light"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"accelerate>=1.7.0",
"einops>=0.8.1",
"einops-exts>=0.0.4",
"librosa>=0.11.0",
"matplotlib>=3.10.3",
"monotonic-align",
"munch>=4.0.0",
"nltk>=3.9.1",
"numpy>=2.2.6",
"pydub>=0.25.1",
"pyyaml>=6.0.2",
"soundfile>=0.13.1",
"torch>=2.7.0",
"torchaudio>=2.7.0",
"tqdm>=4.67.1",
"transformers>=4.51.3",
"typing>=3.10.0.0",
"typing-extensions>=4.13.2",
]
[project.optional-dependencies]
demo = [
"espeakng-loader>=0.2.4",
"noisereduce>=3.0.3",
"pandas>=2.2.3",
"phonemizer-fork>=3.3.2",
]
onnx = [
"onnx>=1.18.0",
"onnxruntime>=1.22.0",
]
[tool.uv.sources]
monotonic-align = { git = "https://github.com/resemble-ai/monotonic_align.git" }
|