Skip to content

Commit c62206a

Browse files
authored
Merge pull request #173 from Renater/master
More explicit dependency on python 3
2 parents 3ad10ac + bfe68b8 commit c62206a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
README = open(join(here, 'README.rst')).read()
1616
NEWS = open(join(here, 'NEWS.txt')).read()
1717

18+
python_requires='>=3.5';
19+
1820
install_requires = [
1921
'mako',
2022
'lxml >=4.1.1',
@@ -29,7 +31,6 @@
2931
'ipaddr',
3032
'publicsuffix2',
3133
'redis',
32-
'futures',
3334
'requests',
3435
'requests_cache',
3536
'requests_file',
@@ -55,6 +56,10 @@
5556
long_description=README + '\n\n' + NEWS,
5657
classifiers=[
5758
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
59+
'Programming Language :: Python :: 3',
60+
'Programming Language :: Python :: 3.5',
61+
'Programming Language :: Python :: 3.6',
62+
'Programming Language :: Python :: 3.7',
5863
],
5964
keywords='identity federation saml metadata',
6065
author=__author__,

0 commit comments

Comments
 (0)