From 96c6c71c64ec4320d851b8914444bc6d5405d84d Mon Sep 17 00:00:00 2001 From: Hardik Mer Date: Sat, 31 Jan 2026 00:29:39 +0530 Subject: [PATCH] add readme and repository URLs to pyproject.toml Adds project metadata to display on PyPI: - readme field to show README.md content - Homepage and Repository URLs linking to GitHub Closes #13 --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0c43423..ffc71c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,7 @@ name = "upskill" version = "0.2.1" description = "Generate and evaluate agent skills" +readme = "README.md" requires-python = ">=3.13.5,<3.14" dependencies = [ "click>=8.1", @@ -12,6 +13,10 @@ dependencies = [ "rich>=13.0", ] +[project.urls] +Homepage = "https://github.com/huggingface/upskill" +Repository = "https://github.com/huggingface/upskill" + [project.optional-dependencies] dev = [ "pytest>=8.0",