From: Doug Hellmann Date: Mon, 22 Oct 2012 22:25:01 +0000 (-0400) Subject: Add trove classifiers for PyPI X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=7dbc23c01eba6172a30448447084f4210457d99f;p=openstack-build%2Fcinder-build.git Add trove classifiers for PyPI Add classifiers so we can eventually register the project on PyPI to reserve the name, even though we won't release packages there. Change-Id: I11fa429d34301ba9a1ec9a543f88d57eb3ac56bb Signed-off-by: Doug Hellmann --- diff --git a/setup.py b/setup.py index 02217af8b..39db91feb 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,16 @@ setuptools.setup(name='cinder', author='OpenStack', author_email='cinder@lists.launchpad.net', url='http://www.openstack.org/', + classifiers=[ + 'Environment :: OpenStack', + 'Intended Audience :: Information Technology', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: Apache Software License', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + ], cmdclass=common_setup.get_cmdclass(), packages=setuptools.find_packages(exclude=['bin', 'smoketests']), install_requires=requires,