setup: add explicit Python 2.7 and 3.2 classifiers.
authorW. Trevor King <wking@tremily.us>
Wed, 17 Oct 2012 19:40:55 +0000 (15:40 -0400)
committerW. Trevor King <wking@tremily.us>
Wed, 17 Oct 2012 19:58:41 +0000 (15:58 -0400)
setup.py

index 8c18b56cd6862a3c7a0dec7ff90a7e21d4c9755e..c3f84d03588d765383036a8027a3cf20debdb921 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -28,17 +28,6 @@ from pycomedi import __version__
 
 
 package_name = 'pycomedi'
-classifiers = """\
-Development Status :: 2 - Pre-Alpha
-Intended Audience :: Developers
-Intended Audience :: Science/Research
-Operating System :: POSIX
-Operating System :: Unix
-License :: OSI Approved :: GNU General Public License (GPL)
-Programming Language :: Python
-Topic :: Scientific/Engineering
-Topic :: Software Development :: Libraries :: Python Modules
-"""
 
 _this_dir = os.path.dirname(__file__)
 
@@ -65,7 +54,21 @@ setup(name=package_name,
       platforms=['all'],
       description=__doc__,
       long_description=open(os.path.join(_this_dir, 'README'), 'r').read(),
-      classifiers=filter(None, classifiers.split('\n')),
+      classifiers=[
+          'Development Status :: 2 - Pre-Alpha',
+          'Intended Audience :: Developers',
+          'Intended Audience :: Science/Research',
+          'Operating System :: POSIX',
+          'Operating System :: Unix',
+          'License :: OSI Approved :: GNU General Public License (GPL)',
+          'Programming Language :: Python',
+          'Programming Language :: Python :: 2',
+          'Programming Language :: Python :: 2.7',
+          'Programming Language :: Python :: 3',
+          'Programming Language :: Python :: 3.2',
+          'Topic :: Scientific/Engineering',
+          'Topic :: Software Development :: Libraries :: Python Modules',
+          ],
       packages=[package_name],
       provides=[package_name],
       cmdclass = {'build_ext': build_ext},