From d77262b15bc14af98ad10ce4f6d13d9115ba3664 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Sat, 19 May 2012 07:50:05 +0200 Subject: [PATCH] Exclude more modules to optimize installer size. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 15c06ce..864e008 100644 --- a/setup.py +++ b/setup.py @@ -42,11 +42,10 @@ AppVersion = "0.17" MyName = "Bastian Kleineidam" MyEmail = "calvin@users.sourceforge.net" -# basic excludes for py2exe and py2app # py2exe options for windows .exe packaging py2exe_options = dict( packages=["encodings"], - excludes=['doctest', 'unittest', 'optcomplete', 'Tkinter'], + excludes=['doctest', 'unittest', 'Tkinter', '_ssl', 'pdb', 'inspect'], # silence py2exe error about not finding msvcp90.dll dll_excludes=['MSVCP90.dll'], compressed=1,