RANGER-2927: updated description for apache-ranger PyPi project
(cherry picked from commit 7b82a847134251dcdfdfbcafadd509ba9e926915)
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 @@
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 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
+ keywords='ranger client, apache ranger',
python_requires='>=3.6',
)