23 lines
461 B
Python
23 lines
461 B
Python
"""
|
|
This is a setup.py script generated by py2applet
|
|
|
|
Usage:
|
|
python setup.py py2app
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
APP = ['main.py']
|
|
DATA_FILES = ['files']
|
|
OPTIONS = {
|
|
'iconfile': 'icon.icns',
|
|
'includes': ['PySide.QtCore', 'PySide.QtGui', 'PySide.QtNetwork', 'configobj'],
|
|
'packages': ['PIL']
|
|
}
|
|
|
|
setup(
|
|
app=APP,
|
|
data_files=DATA_FILES,
|
|
options={'py2app': OPTIONS},
|
|
setup_requires=['py2app'],
|
|
)
|