From b2739cec6d22160d162a04a41d8ea68d8c669050 Mon Sep 17 00:00:00 2001 From: billwanjohi Date: Thu, 11 Sep 2014 22:47:30 +0000 Subject: [PATCH] add distutils package classifiers I was particularly interested in the programming language ones, but the others might be useful to others browsing PyPI. Now with GPLv3+, and Utilities topic. --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/setup.py b/setup.py index 513108f0d6..60c7d73ffc 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,21 @@ setup(name='ansible', package_data={ '': ['module_utils/*.ps1', 'modules/core/windows/*.ps1', 'modules/extras/windows/*.ps1'], }, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'Intended Audience :: Information Technology', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', + 'Natural Language :: English', + 'Operating System :: POSIX', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Topic :: System :: Installation/Setup', + 'Topic :: System :: Systems Administration', + 'Topic :: Utilities', + ], scripts=[ 'bin/ansible', 'bin/ansible-playbook',