ISP_Controller/ISPController.spec

45 lines
798 B
Plaintext
Raw Permalink Normal View History

2024-07-10 21:22:25 +08:00
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['src/main.py'],
pathex=['src'],
binaries=[],
datas=[],
hiddenimports=['tkinter','PIL','PIL._tkinter_finder'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='ISPController',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
2024-07-11 17:51:10 +08:00
console=False,
2024-07-10 21:22:25 +08:00
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='ISPController',
)