forked from sidharthrajaram/StyleTTS2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.17 KB
/
pyproject.toml
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
43
44
45
[tool.poetry]
name = "styletts2"
version = "0.1.6"
description = "StyleTTS 2: Towards Human-Level Text-to-Speech through Style Diffusion and Adversarial Training with Large Speech Language Models. Original authors: Yinghao Aaron Li, Cong Han, Vinay S. Raghavan, Gavin Mischler, Nima Mesgarani. "
authors = ["Sidharth Rajaram <[email protected]>"]
homepage = "https://github.com/sidharthrajaram/StyleTTS2"
repository = "https://github.com/sidharthrajaram/StyleTTS2"
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
soundfile = "^0.12.1"
torchaudio = "^2.1.2"
munch = "^4.0.0"
torch = "^2.1.2"
pydub = "^0.25.1"
PyYAML = "^6.0.1"
librosa = "^0.10.1"
nltk = "^3.8.1"
matplotlib = "^3.7.0"
accelerate = "^0.25.0"
langchain = "^0.1.0"
huggingface-hub = "^0.19.0"
transformers = "^4.36.0"
cached-path = "^1.5.1"
filelock = "^3.12.4, <3.13"
einops = "^0.7.0"
einops-exts = "^0.0.4"
scipy = "^1.10.0"
tqdm = "^4.66.1"
typing = { version = "*", python = "<3.5" }
typing-extensions = "^4.9.0"
gruut = "^2.3.4"
gruut-ipa = "^0.13.0"
gruut-lang-en = "^2.0.0"
networkx = "^2.8.8, <3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"