##// END OF EJS Templates
load bundled profiles without having to use 'profile create' or '--init'...
load bundled profiles without having to use 'profile create' or '--init' This lets `ipython profile=math` etc. behave as expected on first use. *only* bundled config files, and not generated ones will be staged in this way. Extra tweak: ProfileDir.copy_config_file returns True on copy, False on no-op.

File last commit:

r2460:e8303d57
r4122:f256659d
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')