Guest User

Untitled

a guest
Nov 19th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. # -*- mode: python -*-
  2.  
  3. block_cipher = None
  4.  
  5.  
  6. a = Analysis(['btcloot.py'],
  7. pathex=['C:\Users\Houssem\Desktop\BTCLoot application'],
  8. binaries=[],
  9. datas=[],
  10. hiddenimports=[],
  11. hookspath=[],
  12. runtime_hooks=[],
  13. excludes=[],
  14. win_no_prefer_redirects=False,
  15. win_private_assemblies=False,
  16. cipher=block_cipher)
  17. pyz = PYZ(a.pure, a.zipped_data,
  18. cipher=block_cipher)
  19. exe = EXE(pyz,
  20. a.scripts,
  21. exclude_binaries=True,
  22. name='btcloot',
  23. debug=False,
  24. strip=False,
  25. upx=True,
  26. console=False , icon='C:\Users\Houssem\Desktop\BTCLoot application\btcloot.ico')
  27. coll = COLLECT(exe,
  28. a.binaries,
  29. a.zipfiles,
  30. a.datas,
  31. strip=False,
  32. upx=True,
  33. name='btcloot')
  34.  
  35. pyinstaller --window --onefile script.py
Add Comment
Please, Sign In to add comment