#!/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.caper import main

main()

