pan3793 commented on code in PR #5686:
URL: https://github.com/apache/kyuubi/pull/5686#discussion_r1544223521


##########
pyhive/setup.py:
##########
@@ -0,0 +1,78 @@
+#!/usr/bin/env python
+
+from setuptools import setup
+from setuptools.command.test import test as TestCommand
+import pyhive
+import sys
+
+
+class PyTest(TestCommand):
+    def finalize_options(self):
+        TestCommand.finalize_options(self)
+        self.test_args = []
+        self.test_suite = True
+
+    def run_tests(self):
+        # import here, cause outside the eggs aren't loaded
+        import pytest
+        errno = pytest.main(self.test_args)
+        sys.exit(errno)
+
+
+with open('README.rst') as readme:
+    long_description = readme.read()
+
+setup(
+    name="PyHive",
+    version=pyhive.__version__,
+    description="Python interface to Hive",
+    long_description=long_description,
+    url='https://github.com/dropbox/PyHive',
+    author="Jing Wang",
+    author_email="[email protected]",

Review Comment:
   ```suggestion
       url='https://github.com/apache/kyuubi/python',
       author="Apache Kyuubi Developers",
       author_email="[email protected]",
   ```



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to