Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. # -*- mode: python -*-
  2.  
  3. block_cipher = None
  4.  
  5.  
  6. a = Analysis(['datasorter.py'],
  7. pathex=["C:\Users\Rat's Nest\Desktop\DATASORTERS\V1.1"],
  8. binaries=[],
  9. datas=[('clogo.png', '.'), ('FullLogo.png', '.'),
  10. ('logo.ico','.')],
  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. noarchive=False)
  19. pyz = PYZ(a.pure, a.zipped_data,
  20. cipher=block_cipher)
  21. exe = EXE(pyz,
  22. a.scripts,
  23. a.binaries,
  24. a.zipfiles,
  25. a.datas,
  26. [],
  27. name='datasorter',
  28. debug=False,
  29. bootloader_ignore_signals=False,
  30. strip=False,
  31. upx=True,
  32. runtime_tmpdir=None,
  33. console=False , icon='logo.ico')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement