@@ -37,9 +37,15 @@ def run_tests(self):
37
37
version = '0.4.3-dev' ,
38
38
description = 'Pyramid OAuthLib integration' ,
39
39
long_description = README + '\n \n ' + CHANGES ,
40
+ long_description_content_type = "text/x-rst" ,
40
41
classifiers = [
41
42
"Programming Language :: Python" ,
42
43
"Programming Language :: Python :: 3" ,
44
+ "Programming Language :: Python :: 3.7" ,
45
+ "Programming Language :: Python :: 3.8" ,
46
+ "Programming Language :: Python :: 3.9" ,
47
+ "Programming Language :: Python :: 3.10" ,
48
+ "Programming Language :: Python :: 3 :: Only" ,
43
49
"Framework :: Pyramid" ,
44
50
"Topic :: Internet :: WWW/HTTP" ,
45
51
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware" ,
@@ -53,6 +59,7 @@ def run_tests(self):
53
59
include_package_data = True ,
54
60
install_requires = ['pyramid>=1.4.0' , 'oauthlib>=3' ],
55
61
packages = find_packages (),
62
+ python_requires = '>=3.7' ,
56
63
setup_requires = ['setuptools_git' ],
57
64
tests_require = ['mock' , 'pytest' , 'pytest-cov' ],
58
65
zip_safe = False ,
0 commit comments