mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 15:40:17 +00:00
0489f089d0
git-svn-id: http://svn.pyinstaller.org/trunk@638 8dd32b29-ccff-0310-8a9a-9233e24343b1
16 lines
487 B
RPMSpec
16 lines
487 B
RPMSpec
# -*- mode: python -*-
|
|
a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'),
|
|
os.path.join(HOMEPATH,'support/useUnicode.py'),
|
|
'test-nestedlaunch0.py'],
|
|
pathex=[''])
|
|
pyz = PYZ(a.pure)
|
|
exe = EXE( pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
name=os.path.join('dist', 'test-nestedlaunch0', 'test-nestedlaunch0.exe'),
|
|
debug=False,
|
|
strip=False,
|
|
upx=False,
|
|
console=1 )
|