diff options
author | Michael Merickel <michael@merickel.org> | 2022-05-15 19:32:04 -0500 |
---|---|---|
committer | Michael Merickel <michael@merickel.org> | 2022-05-15 19:32:28 -0500 |
commit | 0fae4f855bbb356a84f1a2d67d89c75463b131ae (patch) | |
tree | 1dc5be7ee15b6a62e57f8fc1bdabb70bda648295 | |
parent | 66e05f4304f61fd4aa790836d6205d8e6ace0616 (diff) | |
download | pastedeploy-git-0fae4f855bbb356a84f1a2d67d89c75463b131ae.tar.gz |
fix classifiers
-rw-r--r-- | setup.py | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -13,7 +13,7 @@ docs_extras = [ setup( name="PasteDeploy", - version="2.1.1", + version="3.0.dev0", description="Load, configure, and compose WSGI applications and servers", long_description=readme, classifiers=[ @@ -21,12 +21,11 @@ setup( "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP", |