##// END OF EJS Templates
Massive, crazy refactoring of everything....
Massive, crazy refactoring of everything. * InteractiveShell now runs on its own. * The __init__ method of InteractiveShell has been organized into smaller methods. * Banner and usage handling has been refactored. * No more rc attribute. * Everything is a traitlet.

File last commit:

r2119:2c8c96be
r2202:8226082b
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')