From 332ff5ce8b74b5e556cc78e194c8a00b26697806 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 11 Dec 2017 18:47:45 +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 2902ebf..2797d97 100755 --- a/setup.py +++ b/setup.py @@ -5,8 +5,14 @@ from os.path import abspath, dirname, join 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.7, !=3.0.*, !=3.1.*, !=3.2.*' versionpath = join(abspath(dirname(__file__)), "ppu", "__version__.py") load_source("ppu_version", versionpath) @@ -43,4 +49,5 @@ setup(name='ppu', 'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py', 'scripts/which.py', ], + **kw ) -- 2.39.2