You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by ad...@apache.org on 2016/01/29 22:28:53 UTC

[8/8] incubator-kudu git commit: Add info to setup.py and bump version to 0.1.1

Add info to setup.py and bump version to 0.1.1

This adds more info to setup.py (URL, new apache mailing list) and bumps
the version to 0.1.1 so that we can push a new version to pypi that
reflects the recent changes.

Change-Id: I29394483e9eadfdea839e4b0b32b9db9f9c3fff3
Reviewed-on: http://gerrit.cloudera.org:8080/1946
Reviewed-by: David Ribeiro Alves <da...@cloudera.com>
Tested-by: David Ribeiro Alves <da...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kudu/commit/82fdeb64
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kudu/tree/82fdeb64
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kudu/diff/82fdeb64

Branch: refs/heads/master
Commit: 82fdeb64e19dc7f5c5183866b4242a17e58e686a
Parents: f461e0a
Author: David Alves <da...@cloudera.com>
Authored: Thu Jan 28 10:29:52 2016 -0800
Committer: David Ribeiro Alves <da...@cloudera.com>
Committed: Fri Jan 29 21:15:31 2016 +0000

----------------------------------------------------------------------
 python/setup.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/82fdeb64/python/setup.py
----------------------------------------------------------------------
diff --git a/python/setup.py b/python/setup.py
index 1b250f3..993dace 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -33,7 +33,7 @@ if Cython.__version__ < '0.19.1':
 
 MAJOR = 0
 MINOR = 1
-MICRO = 0
+MICRO = 1
 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
 ISRELEASED = True
 
@@ -141,6 +141,8 @@ CLASSIFIERS = [
     'Programming Language :: Cython'
 ]
 
+URL = 'http://getkudu.io'
+
 setup(
     name="kudu-python",
     packages=['kudu', 'kudu.tests'],
@@ -158,7 +160,8 @@ setup(
     long_description=LONG_DESCRIPTION,
     license='Apache License, Version 2.0',
     classifiers=CLASSIFIERS,
-    author="Apache Kudu (incubating) team",
+    maintainer="Apache Kudu (incubating) team",
     maintainer_email="dev@kudu.incubator.apache.org",
+    url=URL,
     test_suite="kudu.tests"
 )