#/usr/bin/env python
from modelmanager import project, commandline

try:
    commandline.CommandlineInterface(project.Project()).run()
except project.ProjectDoesNotExist:
    functions = {'setup': project.setup}
    commandline.CommandlineInterface(functions=functions).run()
