From a1e60c30b30262a3c048387bba64c58eb1b35c8d Mon Sep 17 00:00:00 2001 From: Holly Becker Date: Tue, 2 Jan 2018 21:40:17 -0800 Subject: [PATCH] Setup.py: Specify supported Python versions --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3b2de78..491d418 100644 --- a/setup.py +++ b/setup.py @@ -63,5 +63,6 @@ def find_version(*file_paths): install_requires=['future', 'lxml', 'six'], - include_package_data=True + include_package_data=True, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', )