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

try:
    import clc
except ImportError:
    import sys
    import os
    sys.path.insert(0, os.path.abspath('..'))
    import clc

if __name__ == '__main__':
    clc.cli()
