From 1c2acffc48ef1729030e0284713bf73d600dc44d Mon Sep 17 00:00:00 2001 From: rubenperezm Date: Tue, 15 Oct 2024 13:28:07 +0200 Subject: [PATCH] fix: pyproject.toml --- pyproject.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b17b659..07b2cc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,9 +4,10 @@ build-backend = "setuptools.build_meta" [project] name = "pystrukts" +description = "Advanced data structures for Python." readme = "README.md" requires-python = ">=3.8" -dynamic = ["version", "description", "authors", "urls", "keywords"] +dynamic = ["version", "keywords"] license = { file = "LICENSE" } classifiers = [ "License :: OSI Approved :: Apache Software License", @@ -21,6 +22,15 @@ classifiers = [ dependencies = [ ] +authors = [ + { name = "Rubén Pérez Mercado", email = "rubenpermerc@gmail.com" } +] + +[project.urls] +Repository = "https://github.com/rubenperezm/pystrukts" +Issues = "https://github.com/rubenperezm/pystrukts/issues" +Changelog = "https://github.com/rubenperezm/pystrukts/blob/main/CHANGELOG.md" + [tool.setuptools_scm] write_to = "pystrukts/_version.py"