From: justin Lund Date: Tue, 23 Oct 2012 18:29:29 +0000 (-0400) Subject: Add OpenStack trove classifier for PyPI X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=cf7d7967f1dbc2a66aa3a3005ea11a78f7038c3c;p=openstack-build%2Fneutron-build.git Add OpenStack trove classifier for PyPI Add trove classifier to have the client listed among the other OpenStack-related projets on PyPI. Change-Id: Ic07fa4b3717a41fdd74c7447d65037dee7ea7fb7 --- diff --git a/setup.py b/setup.py index ba63a32e4..d29a1acd1 100644 --- a/setup.py +++ b/setup.py @@ -98,6 +98,16 @@ setuptools.setup( description=ShortDescription, long_description=Description, license=License, + classifiers=[ + 'Environment :: OpenStack', + 'Intended Audience :: Developers', + 'Intended Audience :: Information Technology', + 'License :: OSI Approved :: Apache Software License', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + ], scripts=ProjectScripts, install_requires=requires, dependency_links=depend_links,