##// END OF EJS Templates
Improve pylab support, find profiles in IPython's own directory....
Improve pylab support, find profiles in IPython's own directory. - Support "ipython -pylab" with a single dash, as this is an extremely widely used option and documented in many places, including books. - Now ipython -p foo will find profile foo from IPython/config/profile if shipped. This lets users find profiles shipped by IPython itself without having to install them (though the IPython directory has lowest priority).

File last commit:

r2119:2c8c96be
r2357:51c4e56b
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')