From 4f99fa0bba7410271e2b6f15fa8ea0d1df160740 Mon Sep 17 00:00:00 2001 From: Kenn Knowles Date: Tue, 26 Mar 2013 16:35:13 -0400 Subject: Add trove classifiers (bump version to 0.9 to publish them) --- setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4e526eb..eae419c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ readme = 'README.txt' if os.path.exists('README.txt') else 'README.md' setuptools.setup( name='jsonpath-rw', - version='0.8', + version='0.9', description='A robust and significantly extended implementation of JSONPath for Python, with a clear AST for metaprogramming.', author='Kenneth Knowles', author_email='kenn.knowles@gmail.com', @@ -23,4 +23,11 @@ setuptools.setup( packages = ['jsonpath_rw'], test_suite = 'tests', install_requires = [ 'ply', 'decorator', 'six' ], + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + ], ) -- cgit v1.2.1