#!/usr/bin/env python3
"""Run clocwork from a clone with no install step."""
import os
import sys

sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "src"))

from clocwork.cli import main  # noqa: E402

if __name__ == "__main__":
    sys.exit(main())
