drop support for Python 2.7 and 3.5

This commit is contained in:
David Lord 2020-04-03 17:23:21 -07:00
parent 7673835b3d
commit a0a61acdec
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
7 changed files with 53 additions and 129 deletions

View file

@ -34,15 +34,6 @@ setup(
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
@ -51,7 +42,7 @@ setup(
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
python_requires=">=3.6",
install_requires=[
"Werkzeug>=0.15",
"Jinja2>=2.10.1",