##// END OF EJS Templates
Added --gui to match %gui use, better docs and behavior for %pylab code....
Added --gui to match %gui use, better docs and behavior for %pylab code. Now both %gui and %pylab have identical syntax if used at startup as --gui and --pylab. This can be useful to people setting up aliases or other shell-based support. Also cleaned up %pylab so it doesn't pollute the output of %who with all loaded symbols.

File last commit:

r2119:2c8c96be
r2388:e8c50627
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')