From 0a04e6217d39aecf5c246d938503924d3a0e0c22 Mon Sep 17 00:00:00 2001 From: Steven Myint Date: Sat, 2 Nov 2013 07:29:03 -0700 Subject: [PATCH] Add classifiers --- setup.py | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/setup.py b/setup.py index bd62672..5f1c162 100755 --- a/setup.py +++ b/setup.py @@ -18,12 +18,22 @@ def version(filename): with open('README.rst') as readme: - core.setup(name='cppclean', - version=version(os.path.join('cpp', '__init__.py')), - description='Find problems in C++ source that slow development ' - 'of large code bases.', - long_description=readme.read(), - license='Apache license', - url='https://github.com/myint/cppclean', - packages=['cpp'], - scripts=['cppclean']) + core.setup( + name='cppclean', + version=version(os.path.join('cpp', '__init__.py')), + description='Find problems in C++ source that slow development ' + 'of large code bases.', + long_description=readme.read(), + license='Apache license', + url='https://github.com/myint/cppclean', + classifiers=[ + 'Environment :: Console', + 'Intended Audience :: Developers', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Topic :: Software Development :: Quality Assurance', + ], + packages=['cpp'], + scripts=['cppclean'])