Spaces:
Sleeping
Sleeping
Michael Hu
commited on
Commit
·
94a90b6
1
Parent(s):
bcc298f
try fixing build issue
Browse files- pyproject.toml +3 -2
- requirements.txt +8 -8
pyproject.toml
CHANGED
|
@@ -25,7 +25,8 @@ dependencies = [
|
|
| 25 |
"phonemizer-fork>=3.3.2",
|
| 26 |
"nemo_toolkit[asr]",
|
| 27 |
"faster-whisper>=1.1.1",
|
| 28 |
-
"chatterbox-tts"
|
|
|
|
| 29 |
]
|
| 30 |
|
| 31 |
[project.optional-dependencies]
|
|
@@ -57,7 +58,7 @@ line-length = 100
|
|
| 57 |
target-version = ['py39']
|
| 58 |
|
| 59 |
[tool.mypy]
|
| 60 |
-
python_version = "3.
|
| 61 |
warn_return_any = true
|
| 62 |
warn_unused_configs = true
|
| 63 |
disallow_untyped_defs = true
|
|
|
|
| 25 |
"phonemizer-fork>=3.3.2",
|
| 26 |
"nemo_toolkit[asr]",
|
| 27 |
"faster-whisper>=1.1.1",
|
| 28 |
+
"chatterbox-tts",
|
| 29 |
+
"YouTokenToMe = { git = "https://github.com/LahiLuk/YouTokenToMe", branch = "main" }"
|
| 30 |
]
|
| 31 |
|
| 32 |
[project.optional-dependencies]
|
|
|
|
| 58 |
target-version = ['py39']
|
| 59 |
|
| 60 |
[tool.mypy]
|
| 61 |
+
python_version = "3.10"
|
| 62 |
warn_return_any = true
|
| 63 |
warn_unused_configs = true
|
| 64 |
disallow_untyped_defs = true
|
requirements.txt
CHANGED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
gradio>=5.25.2
|
| 2 |
nltk>=3.8
|
| 3 |
-
|
| 4 |
-
|
| 5 |
transformers[audio]>=4.33
|
| 6 |
torch>=2.1.0
|
| 7 |
torchaudio>=2.1.0
|
| 8 |
scipy>=1.11
|
| 9 |
-
|
| 10 |
accelerate>=1.2.0
|
| 11 |
soundfile>=0.13.0
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
nemo_toolkit[asr]
|
| 16 |
faster-whisper>=1.1.1
|
| 17 |
-
chatterbox-tts
|
|
|
|
|
|
| 1 |
gradio>=5.25.2
|
| 2 |
nltk>=3.8
|
| 3 |
+
librosa>=0.10
|
| 4 |
+
ffmpeg-python>=0.2
|
| 5 |
transformers[audio]>=4.33
|
| 6 |
torch>=2.1.0
|
| 7 |
torchaudio>=2.1.0
|
| 8 |
scipy>=1.11
|
| 9 |
+
munch>=2.5
|
| 10 |
accelerate>=1.2.0
|
| 11 |
soundfile>=0.13.0
|
| 12 |
+
kokoro>=0.7.9
|
| 13 |
+
ordered-set>=4.1.0
|
| 14 |
+
phonemizer-fork>=3.3.2
|
|
|
|
| 15 |
faster-whisper>=1.1.1
|
| 16 |
+
chatterbox-tts
|
| 17 |
+
nemo_toolkit[asr]
|