Python - Clean up distutils classifiers and package information Updated development status to beta (from alpha) and added several new classifiers. Additionally, updated url to kudu.apache.org.
Change-Id: Ie98313df2a939339f4e8a3cbd1b8580d0760e856 Reviewed-on: http://gerrit.cloudera.org:8080/4579 Reviewed-by: David Ribeiro Alves <[email protected]> Tested-by: Kudu Jenkins Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/ddaf9b39 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/ddaf9b39 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/ddaf9b39 Branch: refs/heads/master Commit: ddaf9b3956ec6864ae164551ffd0339f654b03b1 Parents: 5935697 Author: Jordan Birdsell <[email protected]> Authored: Fri Sep 30 17:55:08 2016 -0400 Committer: Todd Lipcon <[email protected]> Committed: Tue Oct 4 00:58:50 2016 +0000 ---------------------------------------------------------------------- python/setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/ddaf9b39/python/setup.py ---------------------------------------------------------------------- diff --git a/python/setup.py b/python/setup.py index 027ac4c..ba17def 100644 --- a/python/setup.py +++ b/python/setup.py @@ -127,7 +127,11 @@ LONG_DESCRIPTION = open(os.path.join(setup_dir, "README.md")).read() DESCRIPTION = "Python interface to the Apache Kudu C++ Client API" CLASSIFIERS = [ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: Apache Software License', + 'Topic :: Database :: Front-Ends', + 'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator', 'Environment :: Console', 'Programming Language :: Python', 'Programming Language :: Python :: 2', @@ -138,7 +142,7 @@ CLASSIFIERS = [ 'Programming Language :: Cython' ] -URL = 'http://getkudu.io' +URL = 'http://kudu.apache.org/' setup( name="kudu-python",
