#!/usr/bin/env python from __future__ import division # confidence high import sys if sys.hexversion < 0x02060000: raise RuntimeError("vo requires at least Python 2.6") # We use the local copy of stsci_distutils_hack, unless # the user asks for the stpytools version import os if os.getenv("USE_STPYTOOLS") : import pytools.stsci_distutils_hack as H pytools_version = "3.0" else : import stsci_distutils_hack as H pytools_version = None H.run(pytools_version = pytools_version)