openlp/setup.py

14 lines
281 B
Python
Raw Normal View History

2009-08-27 14:02:00 +00:00
from setuptools import setup
APP = ['openlp.pyw']
OPTIONS = {'argv_emulation': True, 'includes': ['sip', 'PyQt4']}
setup(
name='openlp.org',
version='1.9.0',
2009-08-27 14:02:00 +00:00
url='http://www.openlp.org/',
app=APP,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)