##// END OF EJS Templates
Work on inputhook....
Work on inputhook. * We now hold references to qt4 and wx apps that are created. * For wx and qt4 we now first try to get an existing app if it exists. * We now hijack the mainloops for all gui toolkits. * Longer poll time for wx.

File last commit:

r2119:2c8c96be
r2208:2d9d4aa9
Show More
setupegg.py
12 lines | 297 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import sys
# now, import setuptools and call the actual setup
import setuptools
execfile('setup.py')
# clean up the junk left around by setuptools
if "develop" not in sys.argv:
os.system('rm -rf ipython.egg-info build')