You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by GitBox <gi...@apache.org> on 2021/10/22 01:24:29 UTC

[GitHub] [hbase-connectors] YutSean commented on a change in pull request #86: HBASE-26354 [hbase-connectors] Added python client for HBase thrift service

YutSean commented on a change in pull request #86:
URL: https://github.com/apache/hbase-connectors/pull/86#discussion_r734158812



##########
File path: thrift-python/setup.py
##########
@@ -0,0 +1,44 @@
+"""
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+"""
+from setuptools import setup, find_packages
+from os import path
+from sys import version_info
+here = path.abspath(path.dirname(__file__))
+if version_info.major == 3:
+    with open(path.join(here, 'README.md'), encoding='utf-8') as f:
+        long_description = f.read()
+else:
+    with open(path.join(here, 'README.md')) as f:
+        long_description = f.read()
+
+setup(
+    name='thbase',
+    version='1.3.6',
+    description='HBase thrift2 client python API. Compatible with python2.7 and python3',
+    long_description=long_description,
+    long_description_content_type='text/markdown',
+    # Author details
+    author='',
+    author_email='',

Review comment:
       Fixed in the latest commit.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@hbase.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org