##// END OF EJS Templates
Opening trunk for 0.11 and development....
Opening trunk for 0.11 and development. The 0.10 series now will hold any fixes for that series. The trunk is open for the refactoring work that will become 0.11.

File last commit:

r2119:2c8c96be
r2164:31ce543b dev-0.11
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')