From 528438be7459df1e9b4f84c72d729daff518647e Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 11 Dec 2017 18:47:01 +0300 Subject: [PATCH] Build(setup.py): Use python_requires keyword --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index 5b84e9f..6fc6e5f 100755 --- a/setup.py +++ b/setup.py @@ -2,8 +2,14 @@ try: from setuptools import setup + is_setuptools = True except ImportError: from distutils.core import setup + is_setuptools = False + +kw = {} +if is_setuptools: + kw['python_requires'] = '>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' setup(name = "m_lib.defenc", version = "1.0.0", @@ -31,4 +37,5 @@ setup(name = "m_lib.defenc", platforms = "Any", packages = ["m_lib"], namespace_packages = ["m_lib"], + **kw ) -- 2.39.2