From ad07cf25d85de2bfa837c4e4c7aaa1a9b3a37d6e Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Fri, 1 May 2015 03:23:57 +0300 Subject: [PATCH] Settle on just Tkinter in excludes --- setup.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 53d53d551..555ded630 100644 --- a/setup.py +++ b/setup.py @@ -9,9 +9,7 @@ from cx_Freeze import setup, Executable packages = ['eos', 'gui', 'service', 'utils'] include_files = ['icons', 'staticdata'] includes = [] -excludes = [ - 'Tkinter' -] +excludes = ['Tkinter'] def dict_union(a, b): @@ -53,9 +51,3 @@ setup( }, executables=[Executable(**executable_options)] ) - -#"packages": ["sqlalchemy.dialects.sqlite", "eos", "gui", "service", "matplotlib"], -#"excludes": ["_backend_gdk", "_gtkagg", "_tkagg", "_agg2", "_cairo", "_cocoaagg","_fltkagg", "_gtk", "_gtkcairo", -# 'bsddb', 'curses', 'email', 'pywin.debugger', 'pywin.debugger.dbgcon', 'pywin.dialogs'], -#"dll_excludes": ["libgdk-win32-2.0-0.dll", "libgobject-2.0-0.dll", -# "libgdk_pixbuf-2.0-0.dll"],