Spaces:
Sleeping
Sleeping
Upload pyproject.toml
Browse files- pyproject.toml +66 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools >= 61.0", "setuptools-scm>=8.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "f5-tts"
|
| 7 |
+
version = "1.1.5"
|
| 8 |
+
description = "F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
license = {text = "MIT License"}
|
| 11 |
+
classifiers = [
|
| 12 |
+
"License :: OSI Approved :: MIT License",
|
| 13 |
+
"Operating System :: OS Independent",
|
| 14 |
+
"Programming Language :: Python :: 3",
|
| 15 |
+
]
|
| 16 |
+
dependencies = [
|
| 17 |
+
"accelerate>=0.33.0,!=1.7.0",
|
| 18 |
+
"bitsandbytes>0.37.0; platform_machine != 'arm64' and platform_system != 'Darwin'",
|
| 19 |
+
"cached_path",
|
| 20 |
+
"click",
|
| 21 |
+
"datasets>=3.5.0,<4.0.0",
|
| 22 |
+
"ema_pytorch>=0.5.2",
|
| 23 |
+
"gradio>=3.45.2",
|
| 24 |
+
"hydra-core>=1.3.0",
|
| 25 |
+
"jieba",
|
| 26 |
+
"librosa",
|
| 27 |
+
"matplotlib",
|
| 28 |
+
"numpy<=1.26.4",
|
| 29 |
+
"pydantic<=2.10.6",
|
| 30 |
+
"pydub",
|
| 31 |
+
"pypinyin",
|
| 32 |
+
"safetensors",
|
| 33 |
+
"soundfile",
|
| 34 |
+
"tomli",
|
| 35 |
+
"torch>=2.4.0",
|
| 36 |
+
"torchaudio>=2.4.0",
|
| 37 |
+
"torchvision>=0.19.0",
|
| 38 |
+
"torchcodec>=0.3.0",
|
| 39 |
+
"torchdiffeq",
|
| 40 |
+
"tqdm>=4.65.0",
|
| 41 |
+
"transformers",
|
| 42 |
+
"transformers_stream_generator",
|
| 43 |
+
"unidecode",
|
| 44 |
+
"vocos",
|
| 45 |
+
"wandb",
|
| 46 |
+
"x_transformers>=1.31.14",
|
| 47 |
+
]
|
| 48 |
+
|
| 49 |
+
[project.optional-dependencies]
|
| 50 |
+
eval = [
|
| 51 |
+
"faster_whisper==0.10.1",
|
| 52 |
+
"funasr",
|
| 53 |
+
"jiwer",
|
| 54 |
+
"modelscope",
|
| 55 |
+
"zhconv",
|
| 56 |
+
"zhon",
|
| 57 |
+
]
|
| 58 |
+
|
| 59 |
+
[project.urls]
|
| 60 |
+
Homepage = "https://github.com/danhtran2mind/F5-TTS"
|
| 61 |
+
|
| 62 |
+
[project.scripts]
|
| 63 |
+
"f5-tts_infer-cli" = "f5_tts.infer.infer_cli:main"
|
| 64 |
+
"f5-tts_infer-gradio" = "f5_tts.infer.infer_gradio:main"
|
| 65 |
+
"f5-tts_finetune-cli" = "f5_tts.train.finetune_cli:main"
|
| 66 |
+
"f5-tts_finetune-gradio" = "f5_tts.train.finetune_gradio:main"
|