This commit is contained in:
2026-05-16 20:33:36 +02:00
parent 96c1029d91
commit 968bf7d102
212 changed files with 954195 additions and 658 deletions

View File

@@ -0,0 +1,41 @@
# -*- mode: python ; coding: utf-8 -*-
# PyInstaller: eine portable Windows-EXE (ohne Konsole).
block_cipher = None
import os
root = os.path.abspath(os.getcwd())
a = Analysis(
[os.path.join(root, "aza_admin_control_shell.py")],
pathex=[root],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name="AZA_Kontroll_Huelle",
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=False,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
)