try fix etras_require

This commit is contained in:
Schmieder, Jacob
2024-05-07 11:59:43 +00:00
parent 46f48d0e25
commit 8b18787123
+16 -17
View File
@@ -30,27 +30,26 @@ with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
if __name__ == "__main__": if __name__ == "__main__":
setup( setup(
name=module_name, name = module_name,
version=version["get_version"](build_version), version = version["get_version"](build_version),
packages=find_packages(), packages = find_packages(),
python_requires=">=3.8", python_requires = ">=3.8",
readme="README.md", readme = "README.md",
install_requires = requirements, install_requires = requirements,
extras_require= { extras_require = {
"app" : "scraibe-webui @ https://github.com/JSchmie/ScrAIbe-WebUI" "app" : ["scraibe-webui @ git+https://github.com/JSchmie/ScrAIbe-WebUI"],
} },
,
# dependency_links=[ # dependency_links=[
# 'https://download.pytorch.org/whl/cu113', # 'https://download.pytorch.org/whl/cu113',
# ], # ],
url= github_url, url = github_url,
license='GPL-3', license = 'GPL-3',
author='Jacob Schmieder', author = 'Jacob Schmieder',
author_email='Jacob.Schmieder@dbfz.de', author_email = 'Jacob.Schmieder@dbfz.de',
description='Transcription tool for audio files based on Whisper and Pyannote', description = 'Transcription tool for audio files based on Whisper and Pyannote',
classifiers=[ classifiers = [
'Development Status :: 3 - Alpha', 'Development Status :: 3 - Alpha',
'Environment :: GPU :: NVIDIA CUDA :: 11.2', 'Environment :: GPU :: NVIDIA CUDA :: 11.2',
'License :: OSI Approved :: Open Software License 3.0 (OSL-3.0)', 'License :: OSI Approved :: Open Software License 3.0 (OSL-3.0)',
@@ -61,8 +60,8 @@ if __name__ == "__main__":
keywords = ['transcription', 'speech recognition', 'whisper', 'pyannote', 'audio', 'ScrAIbe', 'scraibe', keywords = ['transcription', 'speech recognition', 'whisper', 'pyannote', 'audio', 'ScrAIbe', 'scraibe',
'speech-to-text', 'speech-to-text transcription', 'speech-to-text recognition', 'speech-to-text', 'speech-to-text transcription', 'speech-to-text recognition',
'voice-to-speech'], 'voice-to-speech'],
package_data={'scraibe.app' : ["*.html", "*.svg","*.yml"]}, package_data = {'scraibe.app' : ["*.html", "*.svg","*.yml"]},
entry_points={'console_scripts': entry_points = {'console_scripts':
['scraibe = scraibe.cli:cli']} ['scraibe = scraibe.cli:cli']}
) )