Complete rework for GUI, experimental EXE file and other minor changes, see readme for more info

This commit is contained in:
Kristofer Söderström
2023-06-30 16:11:59 +02:00
parent b765ff6bc6
commit d96333a5a7
19 changed files with 386 additions and 520 deletions

20
build_setup.py Normal file
View File

@@ -0,0 +1,20 @@
from cx_Freeze import setup, Executable
build_exe_options = {
"packages": ['whisper','tkinter','customtkinter']
}
executables = (
[
Executable(
"app.py",
icon='images/icon.ico',
)
]
)
setup(
name="Local Transcribe with Whisper",
version="1.2",
author="Kristofer Rolf Söderström",
options={"build_exe":build_exe_options},
executables=executables
)