X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=2797d972e7092d1e19dd8f61ca4649f45b3044b4;hb=6e0cd069dfb6f2b72931078b566d07d8b37db0d6;hp=2902ebf61e9f6b0a2fa9fc9b96f5a93fba6ce163;hpb=4b15fa0aa9cf0e3d2664f1ac80a42af55a823822;p=ppu.git 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 )