You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
999 B

  1. # -*- mode: python ; coding: utf-8 -*-
  2. import gooey
  3. gooey_root = os.path.dirname(gooey.__file__)
  4. block_cipher = None
  5. a = Analysis(['APPNAME.py'], # replace me with your path
  6. pathex=['/path/to/APP.py'],
  7. binaries=[],
  8. datas=[],
  9. hiddenimports=[],
  10. hookspath=[],
  11. runtime_hooks=[],
  12. excludes=[],
  13. win_no_prefer_redirects=False,
  14. win_private_assemblies=False,
  15. cipher=block_cipher,
  16. noarchive=False)
  17. pyz = PYZ(a.pure, a.zipped_data,
  18. cipher=block_cipher)
  19. exe = EXE(pyz,
  20. a.scripts,
  21. a.binaries,
  22. a.zipfiles,
  23. a.datas,
  24. [],
  25. name='main',
  26. debug=False,
  27. bootloader_ignore_signals=False,
  28. strip=False,
  29. upx=True,
  30. upx_exclude=[],
  31. runtime_tmpdir=None,
  32. console=False,
  33. icon=os.path.join(gooey_root, 'images', 'program_icon.ico'))