Files
whisper-local-transcribe/build_setup.py
2026-03-02 17:02:16 +01:00

20 lines
432 B
Python

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