From 32f6363108903e6dbc480d424b148cd256782911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Sun, 9 Mar 2014 14:44:49 +0100 Subject: add trove classifiers (fixes #6) --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/setup.py b/setup.py index 6668b70..59124fd 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,26 @@ DESCRIPTION = docstrings[0] # Extract name and e-mail ("Firstname Lastname ") AUTHOR, EMAIL = re.match(r'(.*) <(.*)>', AUTHOR_EMAIL).groups() +CLASSIFIERS = [ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', + 'Topic :: Software Development :: Libraries', + 'Topic :: Utilities', +] + setup(name=PACKAGE, version=VERSION, description=DESCRIPTION, @@ -38,4 +58,5 @@ setup(name=PACKAGE, 'console_scripts': [ 'jsonpointer = jsonpointer:main', ]}, + classifiers=CLASSIFIERS, ) -- cgit v1.2.1