forked from p15670423/monkey
28 lines
672 B
Plaintext
28 lines
672 B
Plaintext
|
# -*- mode: python -*-
|
||
|
|
||
|
block_cipher = None
|
||
|
|
||
|
|
||
|
a = Analysis(['main.py'],
|
||
|
pathex=['.'],
|
||
|
binaries=None,
|
||
|
datas=None,
|
||
|
hiddenimports=[],
|
||
|
hookspath=None,
|
||
|
runtime_hooks=None,
|
||
|
excludes=None,
|
||
|
win_no_prefer_redirects=None,
|
||
|
win_private_assemblies=None,
|
||
|
cipher=block_cipher)
|
||
|
pyz = PYZ(a.pure, a.zipped_data,
|
||
|
cipher=block_cipher)
|
||
|
exe = EXE(pyz,
|
||
|
a.scripts,
|
||
|
a.binaries,
|
||
|
a.zipfiles,
|
||
|
a.datas,
|
||
|
name='monkey',
|
||
|
debug=False,
|
||
|
strip=True,
|
||
|
upx=True,
|
||
|
console=True )
|