Created
June 25, 2010 03:27
-
-
Save swanson/452347 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup | |
APP = ['albumart.py'] | |
DATA_FILES = [] | |
OPTIONS = {'argv_emulation': True, "includes":["sip", "lxml._elementpath", "gzip", "PyQt4.QtNetwork"]} | |
setup( | |
app=APP, | |
data_files=DATA_FILES, | |
options={'py2app': OPTIONS}, | |
setup_requires=['py2app'], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment