diff --git a/setup.py b/setup.py index ff92ad89..4ce47e65 100755 --- a/setup.py +++ b/setup.py @@ -15,6 +15,8 @@ README = open(join(here, 'README.rst')).read() NEWS = open(join(here, 'NEWS.txt')).read() +python_requires='>=3.5'; + install_requires = [ 'mako', 'lxml >=4.1.1', @@ -29,7 +31,6 @@ 'ipaddr', 'publicsuffix2', 'redis', - 'futures', 'requests', 'requests_cache', 'requests_file', @@ -55,6 +56,10 @@ long_description=README + '\n\n' + NEWS, classifiers=[ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], keywords='identity federation saml metadata', author=__author__,