##// 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 else:
67 else:
68 egg_extra_kwds = {}
68 egg_extra_kwds = {}
69
69
70
71 # Call the setup() routine which does most of the work
70 # Call the setup() routine which does most of the work
72 setup(name = name,
71 setup(name = name,
73 options = {
72 options = {
74 'py2exe': {
73 'py2exe': {
75 'packages' : ['IPython', 'IPython.Extensions', 'IPython.external','pyreadline'],
74 'packages' : ['IPython', 'IPython.Extensions', 'IPython.external','pyreadline'],
75 'excludes' : ["Tkconstants","Tkinter","tcl",'IPython.igrid','wx','wxPython','igrid']
76
76 }
77 }
77 },
78 },
78 version = version,
79 version = version,
@@ -90,3 +91,6 b' setup(name = name,'
90 # extra params needed for eggs
91 # extra params needed for eggs
91 **egg_extra_kwds
92 **egg_extra_kwds
92 )
93 )
94
95
96
General Comments 0
You need to be logged in to leave comments. Login now