From: Oleg Broytman Date: Mon, 11 Dec 2017 15:47:01 +0000 (+0300) Subject: Build(setup.py): Use python_requires keyword X-Git-Url: https://git.phdru.name/?p=m_lib.defenc.git;a=commitdiff_plain;h=528438be7459df1e9b4f84c72d729daff518647e Build(setup.py): Use python_requires keyword --- 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 )