From 923a506651a2c7fc0780a8a0db5fc8e7a828c7af Mon Sep 17 00:00:00 2001 From: ghinks Date: Fri, 6 Mar 2026 12:58:40 -0500 Subject: [PATCH] feat: add license and author metadata to pyproject.toml Adds MIT license and author fields so they are displayed on the PyPI registry page when the package is published. Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1977c6a..50012a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,8 @@ name = "review-classification" version = "0.0.7" description = "CLI tool to identify pull request outliers in GitHub repositories using Z-score analysis" readme = "README.md" +license = {text = "MIT"} +authors = [{name = "ghinks", email = "ghinks@yahoo.com"}] requires-python = ">=3.12" dependencies = [ "pygithub>=2.8.1",