From 85ad95c0d08e75270d26f8751349660ee96593b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Wed, 9 Oct 2013 11:17:57 +0200 Subject: [PATCH] Setup update --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 35edd24..a72f319 100644 --- a/setup.py +++ b/setup.py @@ -22,8 +22,8 @@ if platform == "darwin": py2app=dict( argv_emulation=True, iconfile='icons/comic2ebook.icns', - includes=['PIL', 'sip', 'PyQt4', 'PyQt4.QtCore', 'PyQt4.QtGui'], - resources=['other/qt.conf', 'LICENSE.txt'], + includes=['PIL', 'sip', 'PyQt4', 'PyQt4.QtCore', 'PyQt4.QtGui', 'PyQt4.QtNetwork'], + resources=['other/qt.conf', 'LICENSE.txt', 'other/Additional-LICENSE.txt'], plist=dict( CFBundleName=NAME, CFBundleShortVersionString=VERSION, @@ -57,7 +57,9 @@ elif platform == "win32": else: from cx_Freeze import setup, Executable extra_options = dict( - options={"build_exe": {"include_files": ['LICENSE.txt'], "compressed": True}}, + options={"build_exe": {"include_files": ['LICENSE.txt', + ['other/Additional-LICENSE.txt', 'Additional-LICENSE.txt'] + ], "compressed": True}}, executables=[Executable(MAIN, icon="icons/comic2ebook.png", copyDependentFiles=True,