##// END OF EJS Templates
Update to upstream of numpy decorators, and add a few fixes....
Update to upstream of numpy decorators, and add a few fixes. Note that right now this means our copy diverges from upstream, because I have a few fixes of my own I need to send to them. I will later sync and send those patches to them, so we sync again.

File last commit:

r1644:e9ae4f1d
r1846:041ce97b
Show More
setupegg.py
14 lines | 341 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
# print sys.argv
#sys.argv=['','bdist_egg']
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')