From 5f2960a9edd6f0952c41ae33a9fa888ed528186a Mon Sep 17 00:00:00 2001 From: Jon Tibble Date: Thu, 27 Aug 2009 15:02:00 +0100 Subject: [PATCH] Fixed carriage returns --- setup.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4306f75c9..5d1ca462d 100644 --- a/setup.py +++ b/setup.py @@ -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', 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'], +)