From fe80703f95aa14c118e5f31b3c2fd838310ee0fc Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Mon, 26 Jun 2017 23:02:36 +0100 Subject: [PATCH] [Packaging] Fix py2app build --- setup.cfg | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index fbd6a39ff..d7e14b609 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,14 +4,15 @@ build-dir = docs/build all_files = 1 [py2app] -app = ['deluge/main.py'] +app = ['deluge/ui/ui_entry.py'] arch = x86_64 # arch = i386 -iconfile = osx/deluge.icns +iconfile = packaging/osx/deluge.icns site-packages = false includes = glib, gio, cairo, pango, pangocairo, atk, gobject, gtk.keysyms, twisted.internet, twisted.internet.utils, twisted.protocols, - zope.interface, mako.cache, email.mime, libtorrent, gtkosx_application + zope.interface, mako.cache, email.mime, libtorrent, gtkosx_application, + HTMLParser frameworks = CoreFoundation, Foundation, AppKit [isort]