#!/usr/bin/env python3
"""Entry point for `tools/release`; the logic lives in tools/release.py."""

import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parents[1]))

from tools.release import main  # noqa: E402

if __name__ == "__main__":
    raise SystemExit(main())
