summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index e550da7..8c81dc7 100644
--- a/setup.py
+++ b/setup.py
@@ -32,10 +32,11 @@ setup(
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
- "Programming Language :: Python :: 3.4",
- "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
@@ -47,7 +48,7 @@ setup(
license="MIT",
packages=find_packages("src", exclude=["tests"]),
package_dir={"": "src"},
- python_requires=">=3.4",
+ python_requires=">=3.6",
zip_safe=True,
extras_require={"testing": testing_extras, "docs": docs_extras},
)