summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2012-10-22 18:20:37 -0400
committerDoug Hellmann <doug.hellmann@dreamhost.com>2012-10-22 18:20:37 -0400
commitb79db19baa1d77a7fd0d0bd4edc107131d62c540 (patch)
tree3b6bcf4fe65a0ce23fb595a7a06f7bccee9db3da
parent16d653a3067332dc06f5138d2b842a79d65803a6 (diff)
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 <doug.hellmann@dreamhost.com>
-rw-r--r--setup.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 5ae22d6a9..0a32956ec 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,