final update

This commit is contained in:
Louis Mylle
2026-01-10 15:04:21 +01:00
parent 757fc291b0
commit 3248060317
15 changed files with 1138 additions and 1020 deletions

View File

@@ -66,13 +66,14 @@ def main():
# Determine platform-specific settings
is_windows = sys.platform.startswith('win')
exe_name = "EBoek_Scraper.exe" if is_windows else "EBoek_Scraper"
app_name = "EBoek_Scraper" # Base name without extension
# Build command
build_cmd = [
f"{sys.executable}", "-m", "PyInstaller",
"--onefile",
"--windowed",
"--name", "EBoek_Scraper",
"--name", app_name,
# Hidden imports for PyQt5
"--hidden-import", "PyQt5.QtCore",
"--hidden-import", "PyQt5.QtGui",