##// END OF EJS Templates
Backport PR #4125: Basic exercise of `ipython [subcommand] -h` and help-all...
Backport PR #4125: Basic exercise of `ipython [subcommand] -h` and help-all for various subcommands. Prompted by the fact that `ip qtconsole -h` and `ip nbconvert -h` are both broken in master. This PR also fixes both. Should be backported to 1.1

File last commit:

r2460:e8303d57
r12421:e9553a5f
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')