From 5e9556f061453c98cfc36867cd73fa6cfce36cc9 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 28 Mar 2018 22:58:09 +0300 Subject: [PATCH] Build(setup.py): Use setuptools instead of distutils --- setup.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/setup.py b/setup.py index c4d2bfc..d5dbffb 100755 --- a/setup.py +++ b/setup.py @@ -2,17 +2,7 @@ from imp import load_source 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.*' +from setuptools import setup versionpath = join(abspath(dirname(__file__)), "ppu", "__version__.py") ppu_version = load_source("ppu_version", versionpath) @@ -47,5 +37,5 @@ setup(name='ppu', 'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py', 'scripts/which.py', ], - **kw + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*', ) -- 2.39.2