# -*- mode: python ; coding: utf-8 -*- block_cipher = None import os a = Analysis(scripts=['projectutility\\__main__.py'], pathex=['projectutility'], binaries=[], datas=[], hiddenimports=[], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=None, noarchive=False) pyz = PYZ(a.pure, a.zipped_data, cipher=None) exe = EXE(pyz, a.scripts, [], # Binaries/Datas usually handled by Analysis/COLLECT exclude_binaries=True, # Let COLLECT handle binaries in one-dir name='ProjectUtility', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, # Use UPX based on config runtime_tmpdir=None, console=False, # Set console based on GUI checkbox disable_windowed_traceback=False, target_arch=None, codesign_identity=None, entitlements_file=None, icon='ProjectUtility.ico') coll = COLLECT(exe, a.binaries, a.zipfiles, a.datas, strip=False, upx=True, # Match UPX setting upx_exclude=[], name='ProjectUtility')