From cfeba7a49f45cc698d49fc6f1998aa0bc9f2a713 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Wed, 12 Dec 2012 23:03:50 +0100 Subject: [PATCH] Fix py2exe stuff. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 503364adc..9accb6b4c 100644 --- a/setup.py +++ b/setup.py @@ -27,12 +27,14 @@ AppVersion = '1.7' AppName = 'Dosage' py_excludes = ['doctest', 'unittest', 'Tkinter', 'pdb', - 'email', 'calendar', 'ftplib', 'pickle', + 'email', 'ftplib', 'pickle', ] +py_includes = ['dosagelib.plugins.*'] # py2exe options for Windows packaging py2exe_options = dict( packages=["encodings"], excludes=py_excludes, + includes=py_includes, # silence py2exe error about not finding msvcp90.dll dll_excludes=['MSVCP90.dll'], compressed=1,