]> git.phdru.name Git - ppu.git/commitdiff
Build(setup.py): Use setuptools instead of distutils
authorOleg Broytman <phd@phdru.name>
Wed, 28 Mar 2018 19:58:09 +0000 (22:58 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 28 Mar 2018 19:58:09 +0000 (22:58 +0300)
setup.py

index c4d2bfc41d95b9e13230247ab92712d6a0def509..d5dbffb1ba73841bf26857f3e6d1bc47d2c21fdd 100755 (executable)
--- 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.*',
       )