]> git.phdru.name Git - ppu.git/blobdiff - setup.py
Build(setup.py): Use python_requires keyword
[ppu.git] / setup.py
index f5a434e28e2c492c23ae969361ad06b47e555d18..2797d972e7092d1e19dd8f61ca4649f45b3044b4 100755 (executable)
--- 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)
@@ -20,8 +26,7 @@ setup(name='ppu',
       author_email='phd@phdru.name',
       url='http://phdru.name/Software/Python/ppu/',
       license='GPL',
-      platforms=['any'],
-      keywords=[''],
+      platforms='Any',
       classifiers=[
           'Development Status :: 4 - Beta',
           'Environment :: Console',
@@ -29,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',
@@ -42,4 +49,5 @@ setup(name='ppu',
           'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py',
           'scripts/which.py',
       ],
+      **kw
       )