forked from ysharma3501/MiraTTS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 826 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "FastNeuTTS"
version = "0.0.11"
authors = [
{ name="Yatharth Sharma", email="yatharthsharma3501@gmail.com" },
]
description = "High quality and Fast TTS with MiraTTS"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"lmdeploy",
"librosa",
"fastaudiosr @ git+https://github.com/ysharma3501/FlashSR.git",
"ncodec @ git+https://github.com/ysharma3501/FastBiCodec.git",
"einops",
"onnxruntime-gpu"
]
[project.urls]
Homepage = "https://github.com/ysharma3501/MiraTTS"
Issues = "https://github.com/ysharma3501/MiraTTS/issues"