From 37fe8d3d8aeb321144df172db0b6742db8a5c1d2 Mon Sep 17 00:00:00 2001 From: missaii Date: Sat, 2 Aug 2025 00:21:29 +0530 Subject: [PATCH] Fix install_requires comma, add project URLs and Python classifiers in setup.py --- setup.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 807670a..9caace3 100644 --- a/setup.py +++ b/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", )