#!/usr/bin/env python3
"""Entry point script for patchright-cli."""

import os
import sys

# Ensure the src directory is on the path when running directly
script_dir = os.path.dirname(os.path.abspath(__file__))
src_dir = os.path.join(script_dir, "src")
if src_dir not in sys.path:
    sys.path.insert(0, src_dir)

from patchright_cli.cli import main

if __name__ == "__main__":
    main()
