From 851913ed52813ad005a8b596749aba32fb92132a Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 17 Oct 2012 15:40:55 -0400 Subject: [PATCH] setup: add explicit Python 2.7 and 3.2 classifiers. --- setup.py | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/setup.py b/setup.py index 8c18b56..c3f84d0 100644 --- 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}, -- 2.26.2