PyHive/setup.py

74 строки
2.0 KiB
Python
Executable File

#!/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="jing@dropbox.com",
license="Apache License, Version 2.0",
packages=['pyhive', 'TCLIService'],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Database :: Front-Ends",
],
install_requires=[
'future',
],
extras_require={
"Presto": ['requests>=1.0.0'],
"Hive": ['sasl>=0.1.3', 'thrift>=0.8.0', 'thrift_sasl>=0.1.0'],
"SQLAlchemy": ['sqlalchemy>=0.5.0'],
},
tests_require=[
'mock>=1.0.0',
'pytest',
'pytest-cov',
'requests>=1.0.0',
'sasl>=0.1.3',
'sqlalchemy>=0.5.0',
'thrift>=0.8.0',
],
cmdclass={'test': PyTest},
package_data={
'': ['*.rst'],
},
entry_points={
# New versions
'sqlalchemy.dialects': [
'hive = pyhive.sqlalchemy_hive:HiveDialect',
'presto = pyhive.sqlalchemy_presto:PrestoDialect',
],
# Version 0.5
'sqlalchemy.databases': [
'hive = pyhive.sqlalchemy_hive:HiveDialect',
'presto = pyhive.sqlalchemy_presto:PrestoDialect',
],
}
)