Exclude tkinter from py2exe modules.

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3907 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2009-01-11 00:59:44 +00:00
parent acbf9dcd60
commit ea0cc42e7f

View file

@ -69,7 +69,7 @@ except ImportError:
py2exe_options = dict(
packages=["encodings"],
excludes=['doctest', 'unittest', 'optcomplete'],
excludes=['doctest', 'unittest', 'optcomplete', 'Tkinter'],
includes=['linkcheck.HtmlParser.htmlsax', 'linkcheck.network._network'],
compressed=1,
optimize=2,