##// END OF EJS Templates
In-progress work on trying to get a robust inputhook setup....
In-progress work on trying to get a robust inputhook setup. This is proving to be pretty hard and will require some changes to end-user code in the long run. It's simply impossible.

File last commit:

r2119:2c8c96be
r2213:51df1216
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')