From 6717987b3a5df9af918c45c57e48536d079cc209 Mon Sep 17 00:00:00 2001 From: Florent Valette Date: Thu, 11 Jul 2024 15:08:43 +0200 Subject: [PATCH] pyproject: add project urls and classifiers --- pyproject.toml | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index da018de..09b3929 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,13 +20,27 @@ dependencies = [ "Jinja2>3", "rich", ] +classifiers = [ + "Development Status :: 4 - Beta", -# TODO -# [project.urls] -# Homepage = + "Intended Audience :: Developers", + + "Topic :: Software Development :: Build Tools", + + "License :: OSI Approved :: Apache Software License", + + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", +] + +[project.urls] +Homepage = "https://github.com/outpost-os" # Documentation = -# Repository = -# Issues = +Repository = "https://github.com/outpost-os/python-dts-utils" +Issues = "https://github.com/outpost-os/python-dts-utils/issues" [project.scripts] dts_dump = 'dts_utils.dump:main'