Fix install_requires comma, add project URLs and Python classifiers in setup.py

This commit is contained in:
missaii 2025-08-02 00:21:29 +05:30
parent 8a2563ecab
commit 37fe8d3d8a

View file

@ -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",
)