From df090a89c41547f6366b56786360900cd2357cf2 Mon Sep 17 00:00:00 2001 From: Gideon <87426140+GideonBear@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:25:56 +0100 Subject: [PATCH] docs: Add metadata to Python package for PyPI (#1549) --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0498477d..0deb9f09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,13 +5,20 @@ build-backend = "maturin" [project] name = "topgrade" dynamic = ["version"] +description = "Upgrade all the things" +readme = "README.md" +license = "GPL-3.0-or-later" requires-python = ">=3.7" classifiers = [ + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] +urls.bugs = "https://github.com/topgrade-rs/topgrade/issues" +urls.homepage = "https://github.com/topgrade-rs/topgrade" + [tool.maturin] bindings = "bin"