You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
889 B
Plaintext
46 lines
889 B
Plaintext
3 months ago
|
# -*- mode: python ; coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
a = Analysis(
|
||
|
['bunnysync.py'],
|
||
|
pathex=[],
|
||
|
binaries=[],
|
||
|
datas=[('images/realrabbit.ico', 'images'), ('images/realrabbit2.png', 'images')],
|
||
|
hiddenimports=[],
|
||
|
hookspath=[],
|
||
|
hooksconfig={},
|
||
|
runtime_hooks=[],
|
||
|
excludes=[],
|
||
|
noarchive=False,
|
||
|
optimize=0,
|
||
|
)
|
||
|
pyz = PYZ(a.pure)
|
||
|
|
||
|
exe = EXE(
|
||
|
pyz,
|
||
|
a.scripts,
|
||
|
a.binaries,
|
||
|
a.datas,
|
||
|
[],
|
||
|
name='bunnysync',
|
||
|
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=['images/realrabbit.ico'],
|
||
|
)
|
||
|
app = BUNDLE(
|
||
|
exe,
|
||
|
name='bunnysync.app',
|
||
|
icon='images/realrabbit.ico',
|
||
|
bundle_identifier=None,
|
||
|
)
|