Problem

I use wxPython for my GUI. Modulefinder / py2exe nonetheless decides that tkinter and tcl has to be included into my distribution.

Explanation

??? I would like one, really.

Solution

Extend the exclusions

   1 excludes = ["pywin", "pywin.debugger", "pywin.debugger.dbgcon",
   2             "pywin.dialogs", "pywin.dialogs.list", 
   3             "Tkconstants","Tkinter","tcl"
   4             ]

the relevant line is

            "Tkconstants","Tkinter","tcl"

HAM 20040127