Guest User

Untitled

a guest
Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. """
  2. This is a setup.py script generated by py2applet
  3.  
  4. Usage:
  5. python setup.py py2app
  6. """
  7.  
  8. from setuptools import setup
  9.  
  10. APP = ['window.py']
  11. DATA_FILES = ['config.ini', 'images', 'images/trash.svg', 'noten.html']
  12. OPTIONS = { 'argv_emulation': True,
  13. 'includes': ['sip', 'PyQt4._qt', 'PyQt4.QtCore', 'PyQt4.QtGui'],
  14. 'plist': dict(LSUIElement=1)}
  15.  
  16. setup(
  17. app=APP,
  18. data_files=DATA_FILES,
  19. options={'py2app': OPTIONS},
  20. setup_requires=['py2app'],
  21. )
Add Comment
Please, Sign In to add comment