forked from openlp/openlp
3ad3a14ffb
Added PluginConfig Updated ConfigHelper Updated Bible plugin to use plugin config object bzr-revno: 171
5 lines
281 B
Python
5 lines
281 B
Python
from setuptools import setup
|
|
|
|
APP = ['openlp.pyw']
|
|
OPTIONS = {'argv_emulation': True, 'includes': ['sip', 'PyQt4']}
|
|
|
|
setup(
|
|
name='openlp.org',
|
|
version='1.9.0',
|
|
url='http://www.openlp.org/',
|
|
app=APP,
|
|
options={'py2app': OPTIONS},
|
|
setup_requires=['py2app'],
|
|
)
|