Include data in manifest

This commit is contained in:
James Betker 2022-05-31 09:10:06 -06:00
parent 780d2ce313
commit 48fe3288fe
2 changed files with 4 additions and 2 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
recursive-include tortoise/data *

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup( setuptools.setup(
name="TorToiSe", name="TorToiSe",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
version="2.4.0", version="2.4.1",
author="James Betker", author="James Betker",
author_email="james@adamant.ai", author_email="james@adamant.ai",
description="A high quality multi-voice text-to-speech library", description="A high quality multi-voice text-to-speech library",
@ -17,6 +17,7 @@ setuptools.setup(
scripts=[ scripts=[
'scripts/tortoise_tts.py', 'scripts/tortoise_tts.py',
], ],
include_package_data=True,
install_requires=[ install_requires=[
'tqdm', 'tqdm',
'rotary_embedding_torch', 'rotary_embedding_torch',
@ -35,4 +36,4 @@ setuptools.setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
], ],
python_requires=">=3.6", python_requires=">=3.6",
) )