You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by ma...@apache.org on 2020/12/04 08:52:41 UTC

[ranger] branch master updated: RANGER-2927: updated description for apache-ranger PyPi project

This is an automated email from the ASF dual-hosted git repository.

madhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git


The following commit(s) were added to refs/heads/master by this push:
     new 7b82a84  RANGER-2927: updated description for apache-ranger PyPi project
7b82a84 is described below

commit 7b82a847134251dcdfdfbcafadd509ba9e926915
Author: Madhan Neethiraj <ma...@apache.org>
AuthorDate: Fri Dec 4 00:52:09 2020 -0800

    RANGER-2927: updated description for apache-ranger PyPi project
---
 intg/src/main/python/README.md | 2 +-
 intg/src/main/python/setup.py  | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/intg/src/main/python/README.md b/intg/src/main/python/README.md
index 305e7f5..4426d10 100644
--- a/intg/src/main/python/README.md
+++ b/intg/src/main/python/README.md
@@ -36,7 +36,7 @@ Verify if apache-ranger client is installed:
 
 Package      Version
 ------------ ---------
-apache-ranger 0.0.1
+apache-ranger 0.0.2
 ```
 
 ## Usage
diff --git a/intg/src/main/python/setup.py b/intg/src/main/python/setup.py
index 89f2327..b073a80 100644
--- a/intg/src/main/python/setup.py
+++ b/intg/src/main/python/setup.py
@@ -18,13 +18,12 @@
 
 import setuptools
 
-# with open("README.md", "r") as fh:
-#     long_description = fh.read()
-long_description = "Apache Ranger Python client"
+with open("README.md", "r") as fh:
+    long_description = fh.read()
 
 setuptools.setup(
     name="apache-ranger",
-    version="0.0.1",
+    version="0.0.2",
     author="Apache Ranger",
     author_email="dev@ranger.apache.org",
     description="Apache Ranger Python client",
@@ -37,5 +36,6 @@ setuptools.setup(
         "License :: OSI Approved :: Apache Software License",
         "Operating System :: OS Independent",
     ],
+    keywords='ranger client, apache ranger',
     python_requires='>=3.6',
 )