X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=2797d972e7092d1e19dd8f61ca4649f45b3044b4;hb=332ff5ce8b74b5e556cc78e194c8a00b26697806;hp=98d3d0df15af62cf7642b02e2f2e85528ef6cfcc;hpb=196955c7cf82f9d857f0458754fcd9d6009fedcf;p=ppu.git diff --git a/setup.py b/setup.py index 98d3d0d..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) @@ -28,6 +34,8 @@ setup(name='ppu', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Operating System :: OS Independent', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', @@ -41,4 +49,5 @@ setup(name='ppu', 'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py', 'scripts/which.py', ], + **kw )