-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.1 KB
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
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "raon-opentts"
version = "0.1.0"
description = "RAON-OpenTTS: Training and data filtering for text-to-speech"
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=2.7.0",
"torchaudio>=2.7.0",
"accelerate>=1.0.0",
"hydra-core>=1.3.2",
"omegaconf>=2.3.0",
"datasets>=3.0.0",
"ema-pytorch>=0.7.0",
"tqdm>=4.60.0",
"soundfile>=0.12.0",
"numpy>=2.0.0",
"jieba>=0.42.0",
"pypinyin>=0.50.0",
"transformers>=4.40.0",
"einops>=0.8.0",
"x-transformers>=2.0.0",
"safetensors>=0.4.0",
"pydub>=0.25.0",
]
[project.optional-dependencies]
eval = [
"jiwer",
"speechmos",
"scipy",
"ray[default]",
"openai-whisper",
]
vocos = [
"vocos",
]
[project.scripts]
f5-train = "f5_tts.train.train:main"
f5-eval = "f5_tts.eval.run_infer_eval:main"
[project.urls]
Homepage = "https://github.com/KRAFTON/RAON-OpenTTS"
[tool.setuptools.packages.find]
where = ["src"]
include = ["f5_tts*"]