Advertisement
Guest User

Untitled

a guest
Dec 15th, 2014
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.63 KB | None | 0 0
  1. # -*- mode: python -*-
  2. a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), os.path.join(HOMEPATH,'support\\useUnicode.py'), 'game.py'],
  3.              pathex=['C:\\Python27\\pyinstaller'])
  4. pyz = PYZ(a.pure)
  5. exe = EXE( pyz,
  6.           Tree('C:\\Python27\\pyinstaller-1.5.1\\game\\spiel', prefix='spiel\\'),
  7.           a.scripts,
  8.           a.binaries,
  9.           a.zipfiles,
  10.           a.datas,
  11.           name=os.path.join('dist', 'Alien Invasion Last Rites.exe'),
  12.           debug=False,
  13.           strip=False,
  14.           upx=True,
  15.           console=True,
  16.           icon='C:\\Python27\\pyinstaller-1.5.1\\game\\spaceshuttle.ico' )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement