#!/usr/bin/env python
import sys

if not sys.version_info >= (3, 0):
    print("The Python version is %s.%s.%s" % sys.version_info[:3])
    print("Error, this vHPC toolkit only works with Python 3.0 and above")
    raise SystemExit

from vhpc_toolkit.command import command

if __name__ == "__main__":
    command()
