From 72465c4a411a1050c36e7970bd462b7be57790c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Bianchin?= Date: Wed, 22 May 2024 10:01:55 +0200 Subject: [PATCH] Add python versions to pyproject.toml classifiers Motivation: I realized these classifiers where missing, when looking at https://pyreadiness.org/3.12/ --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 77ff9df25..733795059 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,15 @@ classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", + "Programming Language :: Cython", "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Text Processing :: Markup :: HTML", "Typing :: Typed",