##// 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
vivainio
Separate eggsetup.py that handles scripts installation in the egg...
r138 #!/usr/bin/env python
Brian E Granger
Adding documentation to setup* files.
r1239 """Wrapper to run setup.py using setuptools."""
vivainio
Separate eggsetup.py that handles scripts installation in the egg...
r138
vivainio
changed setup to support easy_install ipython==dev
r173 import sys
vivainio
Separate eggsetup.py that handles scripts installation in the egg...
r138
vivainio
changed setup to support easy_install ipython==dev
r173 # now, import setuptools and call the actual setup
import setuptools
execfile('setup.py')
vivainio
Make the egg as minimal as possible, no docs, examples etc.
r139
vivainio
changed setup to support easy_install ipython==dev
r173 # clean up the junk left around by setuptools
vivainio
Joergens patches for Latex char escaping and eggsetup.py develop
r211 if "develop" not in sys.argv:
os.system('rm -rf ipython.egg-info build')