import sys

try:
        import numpy
        numpy_present = True
except ImportError:
        numpy_present = False

sys.exit(numpy_present)
