tortoise-tts/setup.py

40 lines
1 KiB
Python
Raw Normal View History

2022-05-03 05:24:34 +02:00
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="TorToiSe",
2022-05-03 05:31:31 +02:00
packages=setuptools.find_packages(),
2023-08-15 10:27:43 +02:00
version="2.8.0",
2022-05-03 05:24:34 +02: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 07:25:23 +02:00
scripts=[
'scripts/tortoise_tts.py',
],
2022-05-31 17:10:06 +02:00
include_package_data=True,
2022-05-03 05:24:34 +02:00
install_requires=[
'tqdm',
'rotary_embedding_torch',
'inflect',
'progressbar',
'einops',
'unidecode',
'scipy',
'librosa',
2023-08-11 13:58:43 +02:00
'transformers==4.31.0',
2022-05-03 05:24:34 +02:00
'tokenizers',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
2022-05-31 17:10:06 +02:00
)