##// END OF EJS Templates
Make import checks more explicit in %whos...
Make import checks more explicit in %whos Since PyPy has a fake numpy, checking for 'numpy' is insufficient only check if numpy/numeric in use, to prevent unnecessary imports closes gh-904

File last commit:

r2460:e8303d57
r5149:8719351e
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')