##// END OF EJS Templates
Initial support for %pylab magic to load pylab at runtime....
Initial support for %pylab magic to load pylab at runtime. Now one can type %pylab or %pylab wx to load pylab at any point in a session (though only once, since mpl doesn't support switching gui backends).

File last commit:

r2119:2c8c96be
r2358:25665629
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')