##// END OF EJS Templates
Merge pull request #674 from minrk/argparse...
Merge pull request #674 from minrk/argparse use argparse to parse aliases & flags. This now allows calling "ipython --pylab qt" without having to use "--pylab=qt" always.

File last commit:

r2460:e8303d57
r4617:832789bd merge
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')