Guest User

Untitled

a guest
Dec 9th, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. # -*- mode: python -*-
  2. a = Analysis(['bob.py'],
  3. pathex=['/www/bob'],
  4. hiddenimports=[],
  5. hookspath=None,
  6. runtime_hooks=None)
  7. pyz = PYZ(a.pure)
  8. exe = EXE(pyz,
  9. a.scripts,
  10. exclude_binaries=True,
  11. name='bob',
  12. debug=False,
  13. strip=None,
  14. upx=True,
  15. console=True )
  16. coll = COLLECT(exe,
  17. a.binaries,
  18. a.zipfiles,
  19. a.datas,
  20. strip=None,
  21. upx=True,
  22. name='bob')
Advertisement
Add Comment
Please, Sign In to add comment