Advertisement
Guest User

Untitled

a guest
Mar 8th, 2017
765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. # -*- mode: python -*-
  2. from kivy.deps import sdl2, glew
  3.  
  4. block_cipher = None
  5.  
  6.  
  7. a = Analysis(['settings_gui.py'],
  8. pathex=['<project_path'],
  9. binaries=[],
  10. datas=[('settings_gui.kv', '.'), ('backup_gui.kv', '.'), ('config.json', '.')],
  11. hiddenimports=[],
  12. hookspath=[],
  13. runtime_hooks=[],
  14. excludes=[],
  15. win_no_prefer_redirects=False,
  16. win_private_assemblies=False,
  17. cipher=block_cipher)
  18. pyz = PYZ(a.pure, a.zipped_data,
  19. cipher=block_cipher)
  20. exe = EXE(pyz,
  21. a.scripts,
  22. exclude_binaries=True,
  23. name='settings_gui',
  24. debug=False,
  25. strip=False,
  26. upx=True,
  27. console=True )
  28. coll = COLLECT(exe,
  29. a.binaries,
  30. a.zipfiles,
  31. a.datas,
  32. *[Tree(p) for p in (sdl2.dep_bins + glew.dep_bins)],
  33. strip=False,
  34. upx=True,
  35. name='settings_gui')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement