File size: 857 Bytes
12da6cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup

__version__ = "0.4.1"
url = "https://github.com/ntt123/vietTTS"

install_requires = [
    "dm-haiku",
    "einops",
    "fire",
    "gdown",
    "jax",
    "jaxlib",
    "librosa",
    "optax",
    "tabulate",
    "textgrid @ git+https://github.com/kylebgorman/textgrid.git",
    "tqdm",
    "matplotlib",
]
setup_requires = []
tests_require = []

setup(
    name="vietTTS",
    version=__version__,
    description="A vietnamese text-to-speech library.",
    author="ntt123",
    url=url,
    keywords=[
        "text-to-speech",
        "tts",
        "deep-learning",
        "dm-haiku",
        "jax",
        "vietnamese",
        "speech-synthesis",
    ],
    install_requires=install_requires,
    setup_requires=setup_requires,
    tests_require=tests_require,
    packages=["vietTTS"],
    python_requires=">=3.7",
)