-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
55 lines (50 loc) · 1.14 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
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"
[project]
name = "f5-tts-mlx"
version = "0.2.3"
authors = [{name = "Lucas Newman", email = "[email protected]"}]
license = {text = "MIT"}
description = "F5-TTS - MLX"
readme = "README.md"
keywords = [
"artificial intelligence",
"asr",
"audio-generation",
"deep learning",
"transformers",
"text-to-speech"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.9"
dependencies = [
"einops",
"einx",
"jieba",
"huggingface_hub",
"mlx>=0.18.1",
"numpy",
"pypinyin",
"setuptools",
"sounddevice",
"soundfile",
"tqdm",
"vocos-mlx"
]
[project.urls]
Homepage = "https://github.com/lucasnewman/f5-tts-mlx"
[tool.setuptools]
packages = ["f5_tts_mlx"]
[tool.setuptools.package-data]
f5_tts_mlx = ["tests/test_en_1_ref_short.wav"]
[project.scripts]
f5-tts-mlx = "f5_tts_mlx.generate:main"