make project relaease ready

This commit is contained in:
Jaikinator
2023-09-22 16:17:32 +02:00
parent 4cad14ac3e
commit 882287996a
3 changed files with 46 additions and 121 deletions
+15 -1
View File
@@ -1,3 +1,4 @@
from calendar import c
import pkg_resources
import os
from setuptools import setup, find_packages
@@ -36,11 +37,24 @@ if __name__ == "__main__":
'https://download.pytorch.org/whl/cu113',
],
url= github_url,
license='',
license='GPL-3',
author='Jacob Schmieder',
author_email='Jacob.Schmieder@dbfz.de',
description='Transcription tool for audio files based on Whisper and Pyannote',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: GPU :: NVIDIA CUDA :: 11.2',
'License :: OSI Approved :: Open Software License 3.0 (OSL-3.0)',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'],
keywords = ['transcription', 'speech recognition', 'whisper', 'pyannote', 'audio',
'speech-to-text', 'speech-to-text transcription', 'speech-to-text recognition',
'voice-to-speech'],
package_data={ "header" : ["app/header.html"], "logo" : ["app/Logo_KIDA_bmel_green.svg"]},
entry_points={'console_scripts':
['scraibe = scraibe.cli:cli']}
)