summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2014-03-09 14:47:33 +0100
committerStefan Kögl <stefan@skoegl.net>2014-03-09 14:47:33 +0100
commitd65bd3ef3d7b1440713ec41ca568af5dd3807ba4 (patch)
tree0fd9b33e66cf484ba68c280565893cf0e601dc3e
parentbdcfb262a9333139201c8fcda99d0388bcb1a06e (diff)
downloadpython-json-patch-d65bd3ef3d7b1440713ec41ca568af5dd3807ba4.tar.gz
add trove classifiers
-rw-r--r--setup.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 7c302e1..d24c1d6 100644
--- a/setup.py
+++ b/setup.py
@@ -43,6 +43,27 @@ DESCRIPTION = docstrings[0]
# Extract name and e-mail ("Firstname Lastname <mail@example.org>")
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,
@@ -58,5 +79,6 @@ setup(name=PACKAGE,
'jsondiff = jsondiff:main',
'jsonpatch = jsonpatch:main',
]},
+ classifiers=CLASSIFIERS,
**OPTIONS
)