##// END OF EJS Templates
sys.displayhook is now managed dynamically by display_trap.
sys.displayhook is now managed dynamically by display_trap.

File last commit:

r2119:2c8c96be
r2231:732f3d1a
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')