You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
762 B
25 lines
762 B
12 years ago
|
# -*- mode: python -*-
|
||
|
a = Analysis(['C:/electrum/electrum'],
|
||
|
pathex=['Z:\\electrum-wine'],
|
||
|
hiddenimports=[],
|
||
|
excludes=['Tkinter'],
|
||
|
hookspath=None)
|
||
|
pyz = PYZ(a.pure, level=0)
|
||
|
exe = EXE(pyz,
|
||
|
a.scripts,
|
||
|
exclude_binaries=1,
|
||
|
name=os.path.join('build\\pyi.win32\\electrum', 'electrum.exe'),
|
||
|
debug=False,
|
||
|
strip=None,
|
||
|
upx=True,
|
||
|
console=False )
|
||
|
coll = COLLECT(exe,
|
||
|
a.binaries,
|
||
|
a.zipfiles,
|
||
|
a.datas,
|
||
|
strip=None,
|
||
|
upx=True,
|
||
|
name=os.path.join('dist', 'electrum'))
|
||
|
app = BUNDLE(coll,
|
||
|
name=os.path.join('dist', 'electrum.app'))
|