From 9f590040298dab3e01de5d8f1e16017ef68ef793 Mon Sep 17 00:00:00 2001 From: "Schmieder, Jacob" Date: Wed, 8 May 2024 10:04:08 +0000 Subject: [PATCH] debug versioning --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a44fc0a..3dfc95e 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,9 @@ version["ISRELEASED"] = True if "ISRELEASED" in os.environ else False with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f: requirements = [line.strip() for line in f if line.strip() and not line.startswith('#')] + +print(f"Launch Version: {version['get_version'](build_version)}") + if __name__ == "__main__": setup( @@ -59,8 +62,8 @@ if __name__ == "__main__": keywords = ['transcription', 'speech recognition', 'whisper', 'pyannote', 'audio', 'ScrAIbe', 'scraibe', 'speech-to-text', 'speech-to-text transcription', 'speech-to-text recognition', 'voice-to-speech'], + include_package_data=True, package_data = {'scraibe.app' : ["*.html", "*.svg","*.yml"]}, entry_points = {'console_scripts': - ['scraibe = scraibe.cli:cli']} - + ['scraibe = scraibe.cli:cli']} )