#!/usr/bin/env python3
# Convenience script to run urlwatch from a Git checkout
# This is NOT the script that gets installed as part of "pip install",
# for that see the definition of "entry_points" in setup.py.


import os
import sys

HERE = os.path.dirname(os.path.realpath(__file__))

sys.path.insert(0, os.path.join(HERE, 'lib'))

from urlwatch import cli

cli.prefix = HERE
cli.main()
