Complete rework for GUI, experimental EXE file and other minor changes, see readme for more info
This commit is contained in:
20
build_setup.py
Normal file
20
build_setup.py
Normal 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
|
||||
)
|
||||
Reference in New Issue
Block a user