Committing Jon Tibble's merge proposal.

bzr-revno: 513
This commit is contained in:
Jon Tibble 2009-08-27 14:10:24 -04:00 committed by Raoul Snyman
commit cf9be8307a
1 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,13 @@
from setuptools import setup APP = ['openlp.pyw'] OPTIONS = {'argv_emulation': True, 'includes': ['sip', 'PyQt4']} setup( from setuptools import setup
APP = ['openlp.pyw']
OPTIONS = {'argv_emulation': True, 'includes': ['sip', 'PyQt4']}
setup(
name='openlp.org', name='openlp.org',
version='1.9.0', version='1.9.0',
url='http://www.openlp.org/', app=APP, options={'py2app': OPTIONS}, setup_requires=['py2app'], ) url='http://www.openlp.org/',
app=APP,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)