-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (62 loc) · 1.86 KB
/
Copy pathsetup.py
File metadata and controls
64 lines (62 loc) · 1.86 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
60
61
62
63
64
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="str2speech",
version="0.4.4",
author="Ashraff Hathibelagal",
description="A powerful, Transformer-based text-to-speech (TTS) tool.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hathibelagal-dev/str2speech",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.11",
install_requires=[
"transformers==4.50.3",
"torch",
"torchvision",
"torchaudio",
"tokenizers",
"scipy>=1.13.1",
"accelerate",
"numpy==2.0.2",
"kokoro==0.9.4",
"soundfile",
"gitpython",
"moshi==0.2.4",
"torchtune",
"torchao",
"huggingface_hub==0.28.1",
"soxr==0.5.0.post1",
"einops==0.8.1",
"einx==0.3.0",
"requests",
"snac>=1.2.1",
"attrdict",
"librosa==0.10.2.post1",
"pydub==0.25.1",
"pyloudnorm==0.1.1",
"x-transformers==2.1.37",
"openai-whisper==20240930",
"inflect==7.5.0",
"argbind"
],
entry_points={
"console_scripts": [
"str2speech=str2speech.main:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="ai text-to-speech speech-synthesis nlp transformer voice",
project_urls={
"Source": "https://github.com/hathibelagal-dev/str2speech",
"Tracker": "https://github.com/hathibelagal-dev/str2speech/issues",
}
)