#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""Workbench Interactive Shell using IPython"""

try:
    import workbench_cli.workbench_shell as workbench_shell
except (ImportError, ValueError):
    try:
        import workbench_apps.workbench_cli.workbench_shell as workbench_shell
    except (ImportError, ValueError):
    	import workbench_shell

def run():
    work_shell = workbench_shell.WorkbenchShell()
    work_shell.run()

if __name__ == '__main__':
    run()
