Skip to content

Instantly share code, notes, and snippets.

@swanson
Created June 25, 2010 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swanson/452347 to your computer and use it in GitHub Desktop.
Save swanson/452347 to your computer and use it in GitHub Desktop.
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