From 2d83882e84d11691d0095e162b96dd60b60fd2fb Mon Sep 17 00:00:00 2001 From: William Barnhart Date: Wed, 9 Aug 2023 09:07:32 -0400 Subject: [PATCH] Update setup.py with extra tags --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index fb192c9..6cad7b4 100644 --- a/setup.py +++ b/setup.py @@ -78,11 +78,14 @@ def read(f): version=version, license="Mozilla Public License", classifiers=[ + "Development Status :: 6 - Mature", "License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)", "License :: OSI Approved :: GNU General Public License (GPL)", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Programming Language :: Cython", "Programming Language :: Python", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", @@ -91,6 +94,7 @@ def read(f): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], keywords=["cython", "chardet", "charsetdetect"], cmdclass={"build_ext": build_ext},