From 85ee02a1ed19311769190c55947da64e606e9c21 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Wed, 16 Aug 2017 19:11:54 +0100 Subject: [PATCH] Exclude some more unneeded packages --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 312895f0..f829af21 100755 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ if sys.platform=='darwin': 'optimize': 2, 'packages': [ 'requests', 'keyring.backends' ], 'frameworks': [ 'Sparkle.framework' ], - 'excludes': [ 'certifi', 'PIL', 'simplejson' ], + 'excludes': [ 'certifi', 'distutils', 'iniparse', '_markerlib', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ], 'iconfile': '%s.icns' % APPNAME, 'include_plugins': [('plugins', x) for x in PLUGINS], 'resources': ['snd_good.wav', 'snd_bad.wav', 'modules.p', 'ships.p', 'stations.p', 'systems.p'], @@ -103,7 +103,7 @@ elif sys.platform=='win32': {'dist_dir': dist_dir, 'optimize': 2, 'packages': [ 'requests', 'keyring.backends' ], - 'excludes': [ 'PIL', 'simplejson' ], + 'excludes': [ 'certifi', 'distutils', 'iniparse', '_markerlib', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ], } }