2022-05-02 21:24:34 -06:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
|
|
setuptools.setup(
|
2023-10-19 02:19:42 +05:30
|
|
|
name="tortoise-tts",
|
2022-05-02 21:31:31 -06:00
|
|
|
packages=setuptools.find_packages(),
|
2023-10-18 21:32:07 +05:30
|
|
|
version="3.0.0",
|
2022-05-02 21:24:34 -06:00
|
|
|
author="James Betker",
|
|
|
|
|
author_email="james@adamant.ai",
|
|
|
|
|
description="A high quality multi-voice text-to-speech library",
|
|
|
|
|
long_description=long_description,
|
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
|
url="https://github.com/neonbjb/tortoise-tts",
|
|
|
|
|
project_urls={},
|
2022-05-28 05:25:23 +00:00
|
|
|
scripts=[
|
|
|
|
|
'scripts/tortoise_tts.py',
|
|
|
|
|
],
|
2022-05-31 09:10:06 -06:00
|
|
|
include_package_data=True,
|
2022-05-02 21:24:34 -06:00
|
|
|
install_requires=[
|
|
|
|
|
'tqdm',
|
|
|
|
|
'rotary_embedding_torch',
|
|
|
|
|
'inflect',
|
|
|
|
|
'progressbar',
|
|
|
|
|
'einops',
|
|
|
|
|
'unidecode',
|
|
|
|
|
'scipy',
|
|
|
|
|
'librosa',
|
2023-08-11 14:58:43 +03:00
|
|
|
'transformers==4.31.0',
|
2022-05-02 21:24:34 -06:00
|
|
|
'tokenizers',
|
2023-10-18 18:52:39 +05:30
|
|
|
# 'deepspeed==0.8.3',
|
2022-05-02 21:24:34 -06:00
|
|
|
],
|
|
|
|
|
classifiers=[
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
],
|
|
|
|
|
python_requires=">=3.6",
|
2022-05-31 09:10:06 -06:00
|
|
|
)
|