forked from Tera2Space/TeraTTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 875 Bytes
/
setup.py
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
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='TeraTTS',
version='1.0',
description='russian text to speech',
long_description=open("./README.md").read(),
long_description_content_type='text/markdown',
url='https://github.com/Tera2Space/TeraTTS',
author='Tera Space',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords='tts',
packages=find_packages(),
install_requires=['scipy', 'sounddevice', 'onnxruntime', "tok", "transformers", "numpy", "sentencepiece", "ruaccent", "transliterate", "num2words"]
)