first commit

This commit is contained in:
qinzy
2024-02-19 17:49:56 +00:00
parent 736366e546
commit aeb2fa60e4
69 changed files with 139400 additions and 0 deletions

16
setup.py Normal file
View File

@@ -0,0 +1,16 @@
from setuptools import setup, find_packages
import os
cwd = os.path.dirname(os.path.abspath(__file__))
requirements = open(os.path.join(cwd, "requirements.txt"), "r").readlines()
setup(
name='MyShellTTSBase',
version='0.1.0',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
package_data={
'': ['*.txt', 'cmudict_*'],
},
)