##// END OF EJS Templates
Changed get_ipython_dir to return unicode otherwise the ...
Changed get_ipython_dir to return unicode otherwise the pre_config_initialization in iplib fails with UnicodeError when exotic paths are used. ipmaker.make_IPython changed to use get_ipython_dir. some more tests added to genutils.py

File last commit:

r1644:e9ae4f1d
r1749:0c5ef0d9
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')