66 lines
1.5 KiB
Python
66 lines
1.5 KiB
Python
# -*- mode: python ; coding: utf-8 -*-
|
|
|
|
block_cipher = None
|
|
|
|
a = Analysis(
|
|
['window_naximum.py'],
|
|
pathex=[],
|
|
binaries=[],
|
|
datas=[],
|
|
hiddenimports=[
|
|
'Cocoa',
|
|
'Quartz',
|
|
'Foundation',
|
|
'AppKit',
|
|
'objc',
|
|
],
|
|
hookspath=[],
|
|
hooksconfig={},
|
|
runtime_hooks=[],
|
|
excludes=[],
|
|
win_no_prefer_redirects=False,
|
|
win_private_assemblies=False,
|
|
cipher=block_cipher,
|
|
noarchive=False,
|
|
)
|
|
|
|
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
|
|
|
exe = EXE(
|
|
pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
[],
|
|
name='MaximizeCurrentWindow',
|
|
debug=False,
|
|
bootloader_ignore_signals=False,
|
|
strip=False,
|
|
upx=True,
|
|
upx_exclude=[],
|
|
runtime_tmpdir=None,
|
|
console=False, # No terminal window
|
|
disable_windowed_traceback=False,
|
|
argv_emulation=False,
|
|
target_arch=None,
|
|
codesign_identity=None,
|
|
entitlements_file=None,
|
|
)
|
|
|
|
app = BUNDLE(
|
|
exe,
|
|
name='Maximize Current Window.app',
|
|
icon=None,
|
|
bundle_identifier='com.user.maximizeWindow',
|
|
info_plist={
|
|
'CFBundleName': 'Maximize Current Window',
|
|
'CFBundleDisplayName': 'Maximize Current Window',
|
|
'CFBundleVersion': '1.0.0',
|
|
'CFBundleShortVersionString': '1.0.0',
|
|
'LSUIElement': True, # Background app - no dock icon
|
|
'NSAppleEventsUsageDescription': 'This app needs to control other applications to maximize their window.',
|
|
'NSAccessibilityUsageDescription': 'This app needs accessibility access to maximize windows.',
|
|
},
|
|
)
|