#!/usr/bin/python3 -s
"""
Script for the saas command line tool.
"""
import os
import sys


# check if we're running uninstalled
here = os.path.dirname(os.path.abspath(__file__))
if os.path.isdir(os.path.join(here, '..', 'libsaas')):
    sys.path.insert(0, os.path.join(here, '..'))

from libsaas.scripts import saas
saas.run(sys.argv)
