##// END OF EJS Templates
Update exception colors API to PEP8, various small fixes in related files....
Update exception colors API to PEP8, various small fixes in related files. - XXX: we are still carrying two copies of ultraTB, we need to clean this up. Will be done in a later commit.

File last commit:

r1644:e9ae4f1d
r1845:cf8cb577
Show More
setupegg.py
14 lines | 341 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
Brian E Granger
Finished initial reworking and updating of setup.py and friends, including the MANIFEST.in. Everything seems...
r1244 # print sys.argv
vivainio
changed setup to support easy_install ipython==dev
r173 #sys.argv=['','bdist_egg']
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')