summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJoni Orponen <j.orponen@4teamwork.ch>2017-12-04 12:53:25 +0100
committerJoni Orponen <j.orponen@4teamwork.ch>2017-12-14 16:40:49 +0100
commit56465a9c20cc7f2bda5f9b10cf6221b5c26e0523 (patch)
treef0ec9efd301d3f1906310d5a8c31826671ea5812 /setup.py
parent23e467714932e13209b3c7912077468f3b7cd48b (diff)
downloadzope-interface-56465a9c20cc7f2bda5f9b10cf6221b5c26e0523.tar.gz
Declare python_requires in setup.py.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index a12c5aa..35086c5 100644
--- a/setup.py
+++ b/setup.py
@@ -132,6 +132,13 @@ setup(name='zope.interface',
zip_safe=False,
tests_require=tests_require,
install_requires=['setuptools'],
+ python_requires=', '.join((
+ '>=2.7',
+ '!=3.0.*',
+ '!=3.1.*',
+ '!=3.2.*',
+ '!=3.3.*',
+ )),
extras_require={
'docs': ['Sphinx', 'repoze.sphinx.autointerface'],
'test': tests_require,