##// END OF EJS Templates
don't let missing config prevent embed from launching...
don't let missing config prevent embed from launching load_default_config() shouldn't raise on absence of the default config file, since it won't exist for users who don't configure IPython. closes gh-553

File last commit:

r2460:e8303d57
r4168:330ffc28
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')