##// END OF EJS Templates
Several small fixes during code review with Brian....
Several small fixes during code review with Brian. - Delete stale ipcluster.py file. - Add default html target to docs makefile - Fix up a warning in api doc generation. - Fix bug with autocall (missing import) - Fix duplicate options in ipclusterapp.

File last commit:

r2119:2c8c96be
r2339:eb010065
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')