#!/usr/bin/env python3
"""Run postbag from a checkout. The installed command comes from pyproject.toml."""
import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parent))
from postbag import main  # noqa: E402

main()
