##// END OF EJS Templates
exesetup.py: remove tk, wx to avoid bloat
vivainio -
Show More
@@ -67,12 +67,13 b" if 'setuptools' in sys.modules:"
67 67 else:
68 68 egg_extra_kwds = {}
69 69
70
71 70 # Call the setup() routine which does most of the work
72 71 setup(name = name,
73 72 options = {
74 'py2exe': {
75 'packages' : ['IPython', 'IPython.Extensions', 'IPython.external','pyreadline'],
73 'py2exe': {
74 'packages' : ['IPython', 'IPython.Extensions', 'IPython.external','pyreadline'],
75 'excludes' : ["Tkconstants","Tkinter","tcl",'IPython.igrid','wx','wxPython','igrid']
76
76 77 }
77 78 },
78 79 version = version,
@@ -90,3 +91,6 b' setup(name = name,'
90 91 # extra params needed for eggs
91 92 **egg_extra_kwds
92 93 )
94
95
96
General Comments 0
You need to be logged in to leave comments. Login now