mirror of
https://github.com/neonbjb/tortoise-tts.git
synced 2026-01-20 07:30:47 +01:00
Merge 37fe8d3d8a into 8a2563ecab
This commit is contained in:
commit
9cff3aa592
14
setup.py
14
setup.py
|
|
@ -13,7 +13,11 @@ setuptools.setup(
|
|||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/neonbjb/tortoise-tts",
|
||||
project_urls={},
|
||||
project_urls={
|
||||
"Documentation": "https://github.com/neonbjb/tortoise-tts/wiki",
|
||||
"Source": "https://github.com/neonbjb/tortoise-tts",
|
||||
"Bug Tracker": "https://github.com/neonbjb/tortoise-tts/issues",
|
||||
},
|
||||
scripts=[
|
||||
'scripts/tortoise_tts.py',
|
||||
],
|
||||
|
|
@ -29,13 +33,19 @@ setuptools.setup(
|
|||
'librosa',
|
||||
'transformers==4.31.0',
|
||||
'tokenizers==0.14.0',
|
||||
'scipy==1.13.1'
|
||||
'scipy==1.13.1', # Added missing comma here
|
||||
# Uncomment to enable DeepSpeed support:
|
||||
# 'deepspeed==0.8.3',
|
||||
],
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
],
|
||||
python_requires=">=3.6",
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue