##// END OF EJS Templates
DPyGetOpt.py => utils/DPyGetOpt.py and imports updated....
DPyGetOpt.py => utils/DPyGetOpt.py and imports updated. This module was not lowercased and also not moved into external because it is a modified version of the original DPyGetOpt module. Eventually we will replace this with a more modern options parser.

File last commit:

r1644:e9ae4f1d
r2018:d15d3b0d
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')