# -*- mode: python ; coding: utf-8 -*- a = Analysis( ['src/wulftp/__main__.py'], pathex=[], binaries=[], datas=[], hiddenimports=['PyQt6', 'paramiko', 'qtawesome', 'dotenv'], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=['tkinter'], noarchive=False, ) pyz = PYZ(a.pure) exe = EXE( pyz, a.scripts, a.binaries, a.datas, [], name='wulFTP', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, upx_exclude=[], runtime_tmpdir=None, console=False, disable_windowed_traceback=False, argv_emulation=False, target_arch=None, codesign_identity=None, entitlements_file=None, icon=None, # No icon for now ) # Only create .app bundle on macOS import sys if sys.platform == 'darwin': app = BUNDLE( exe, name='wulFTP.app', icon=None, # No icon for now bundle_identifier='com.mfw.wulftp', )