From b79db19baa1d77a7fd0d0bd4edc107131d62c540 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Mon, 22 Oct 2012 18:20:37 -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: I35f4fd72de7781d3e01f1d122d5d3267544ffbd6 Signed-off-by: Doug Hellmann --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup.py b/setup.py index 5ae22d6a9314..0a32956eca32 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,16 @@ setuptools.setup(name='nova', author='OpenStack', author_email='nova@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,