From bff5bb9b79620631081a59d11b06aa3a94da7519 Mon Sep 17 00:00:00 2001 From: Lexi Robinson Date: Thu, 27 Aug 2026 16:08:36 +0100 Subject: [PATCH] Add PEP-621 metadata This is to allow @dependabot to provide useful changelogs during updates. --- pyproject.toml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 31d1083c..dfda158f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,29 @@ -[tool.poetry] +[project] name = "rootly" version = "2.0.0" description = "A client library for accessing Rootly API v1" authors = [] readme = "README.md" +license = "Apache-2.0" +requires-python = ">=3.10" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", + "Typing :: Typed", +] +dynamic = ["dependencies"] + +[project.urls] +Homepage = "https://github.com/rootlyhq/rootly-python" +Issues = "https://github.com/rootlyhq/rootly-python/issues" +Repository = "https://github.com/rootlyhq/rootly-python.git" +Changelog = "https://github.com/rootlyhq/rootly-python/blob/master/CHANGELOG.md" + +[tool.poetry] packages = [ { include = "rootly_sdk" }, ]