-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (56 loc) · 1.41 KB
/
setup.py
File metadata and controls
59 lines (56 loc) · 1.41 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
54
55
56
57
58
59
from setuptools import setup, find_packages
setup(
name="kokoro-tts",
version="0.1.0",
packages=find_packages(),
dependency_links=[],
install_requires=[
"torch>=2.0.0",
"tqdm",
"sounddevice",
"scipy",
"numpy",
"fastapi",
"uvicorn",
"pydantic",
"pydub",
"gradio",
"transformers",
"kokoro",
"phonemizer-fork",
"soundfile",
"python-multipart"
],
entry_points={
"console_scripts": [
"kspeak=kokoro_tts.tts:main",
"kspeak-client=kokoro_tts.tts:main [--client]",
"kspeak-server=kokoro_tts.fastapi_app:main",
"kspeak-webui=kokoro_tts.gradio_interface:main",
],
},
python_requires=">=3.8",
description="A CLI tool for Kokoro TTS with server and web UI capabilities",
)
# author="PierrunoYT",
# description="A CLI tool for Kokoro TTS with server and web UI capabilities",
# long_description=open("README.md").read(),
# long_description_content_type="text/markdown",
# url="https://github.com/PierrunoYT/Kokoro-TTS-Local",
# )
# dependencies = [
# "torch>=2.0.0",
# "tqdm",
# "sounddevice",
# "scipy",
# "numpy",
# "fastapi",
# "uvicorn",
# "pydantic",
# "gradio",
# "transformers",
# "kokoro",
# "phonemizer-fork",
# "soundfile",
# "python-multipart"
# ]