From eaeb94a05ef518ac1247635e81ca2913cc2983ee Mon Sep 17 00:00:00 2001 From: ghinks Date: Fri, 6 Mar 2026 13:19:46 -0500 Subject: [PATCH] feat: add repository URL to pyproject.toml Adds [project.urls] section with GitHub repository link so it appears on the PyPI project page. Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 524e813..a937bec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,5 +49,8 @@ build-backend = "uv_build" [tool.uv.extra-build-dependencies] review_classification = ["uv"] +[project.urls] +Repository = "https://github.com/ghinks/review-classification" + [project.scripts] review-classify = "review_classification.main:main"