From 7dbc23c01eba6172a30448447084f4210457d99f Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Mon, 22 Oct 2012 18:25:01 -0400 Subject: [PATCH] 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 --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) 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, -- 2.45.2