#!/usr/bin/env python3
try:
    import caper
except:
    import sys, os
    script_path = os.path.dirname(os.path.realpath(__file__))
    sys.path.append(os.path.join(script_path, '../'))
    import caper
from caper.cli import main


if __name__ == '__main__':
    main()
