From 35e04f8822e696efc2bc76885cfc0b2646d8172c Mon Sep 17 00:00:00 2001 From: CoderDeltaLAN Date: Fri, 19 Jun 2026 05:45:35 +0100 Subject: [PATCH] packaging: improve PyPI metadata --- CHANGELOG.md | 1 + pyproject.toml | 12 +++++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3211b08..d4cd90b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ This project has a published GitHub Release line, but no stable support or API g ### Changed +- Improved PyPI package metadata with SPDX license metadata, explicit license files, project URLs, and additional classifiers. - Synced the README source-tree layout with the actual v0.3.0 module structure. - Reviewed the threat model for the v0.3.0 doctor, budget, and explain command surface. diff --git a/pyproject.toml b/pyproject.toml index f1c14f4..ec7d61e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.25"] +requires = ["hatchling>=1.27"] build-backend = "hatchling.build" [project] @@ -8,7 +8,8 @@ version = "0.3.0" description = "Local read-only CLI to diagnose AGENTS.md, Claude Code, Gemini CLI, Cursor and Copilot instruction files." readme = "README.md" requires-python = ">=3.12" -license = { text = "MIT" } +license = "MIT" +license-files = ["LICENSE"] authors = [{ name = "CoderDeltaLAN" }] keywords = ["ai-agents", "agent-instructions", "agents-md", "cli", "developer-tools", "python", "linting", "code-quality", "repository-diagnostics", "github-copilot", "cursor", "claude-code", "gemini-cli", "read-only", "local-first"] classifiers = [ @@ -16,9 +17,12 @@ classifiers = [ "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.12", - "Topic :: Software Development :: Quality Assurance" + "Topic :: Software Development :: Quality Assurance", + "Topic :: Utilities" ] dependencies = [] @@ -28,6 +32,8 @@ dev = [ ] [project.urls] +Homepage = "https://github.com/CoderDeltaLAN/agent-rules-kit" +Documentation = "https://github.com/CoderDeltaLAN/agent-rules-kit#readme" Repository = "https://github.com/CoderDeltaLAN/agent-rules-kit" Issues = "https://github.com/CoderDeltaLAN/agent-rules-kit/issues" Changelog = "https://github.com/CoderDeltaLAN/agent-rules-kit/blob/main/CHANGELOG.md"