From 57d9af2a4ecc3f13b10e131bb8d36b4d08adedf6 Mon Sep 17 00:00:00 2001 From: Norwid Behrnd Date: Wed, 13 May 2026 18:00:38 +0200 Subject: [PATCH] style(pyproject.toml): sort classifiers for PyPI To ease the retrieval of appendfilename on PyPI, classifiers were rearranged / complemented. Signed-off-by: Norwid Behrnd --- pyproject.toml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 05a4666..7250125 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,13 +18,22 @@ keywords = [ "time", "time-stamps" ] + +# https://pypi.org/classifiers/ classifiers = [ - "Programming Language :: Python :: 3 :: Only", "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", - "Operating System :: OS Independent" + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "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", ] + dependencies = [ "pyreadline3>=3.5.4", ]