Fix in classifiers for pypy

This commit is contained in:
Antonio de la Rosa 2024-05-25 00:46:09 +02:00
parent 91b7bc6f79
commit 8ba5bad587

View file

@ -28,7 +28,7 @@ setup(name='paramecio2',
zip_safe=False, zip_safe=False,
license='AGPLV3', license='AGPLV3',
platforms = 'any', platforms = 'any',
classifiers=['Development Status :: 1 - Beta', classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: GPLV3 License', 'License :: OSI Approved :: GPLV3 License',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
@ -38,9 +38,10 @@ setup(name='paramecio2',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8' 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9' 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10' 'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11' 'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
], ],
) )