From 8ba5bad587079f71a81f20a2ee13d5b4d8b823e7 Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Sat, 25 May 2024 00:46:09 +0200 Subject: [PATCH] Fix in classifiers for pypy --- setup.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index ffc9ed9..9526eb4 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup(name='paramecio2', zip_safe=False, license='AGPLV3', platforms = 'any', - classifiers=['Development Status :: 1 - Beta', + classifiers=['Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: GPLV3 License', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', @@ -38,9 +38,10 @@ setup(name='paramecio2', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Server', 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8' - 'Programming Language :: Python :: 3.9' - 'Programming Language :: Python :: 3.10' - 'Programming Language :: Python :: 3.11' + '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' ], )