tortoise-tts/setup.py

40 lines
1 KiB
Python
Raw Normal View History

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(
name="TorToiSe",
2022-05-02 21:31:31 -06:00
packages=setuptools.find_packages(),
2023-07-19 10:48:52 +03:00
version="2.5.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-07-09 13:40:16 +03:00
'transformers==4.29.2',
2022-05-02 21:24:34 -06:00
'tokenizers',
],
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
)