forked from dropbox/PyHive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·65 lines (58 loc) · 1.64 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
from setuptools import setup
from setuptools.command.test import test as TestCommand
import pyhiveodbc
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="PyHiveODBC",
version=pyhiveodbc.__version__,
description="Python interface to Hive via ODBC",
long_description=long_description,
url='https://github.com/AurelienGalicher/PyHiveODBC',
author="Aurelien Galicher",
author_email="[email protected]",
license="Apache License, Version 2.0",
packages=['pyhiveodbc'],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Database :: Front-Ends",
],
install_requires=[
'future',
],
extras_require={
'pyodbc': ['pyodbc>=4.0.10'],
'sqlalchemy': ['sqlalchemy>=0.8.7'],
},
tests_require=[
'mock>=1.0.0',
'pytest',
'pytest-cov',
'pyodbc>=4.0.10',
'sasl>=0.2.1',
'sqlalchemy>=0.8.7',
],
cmdclass={'test': PyTest},
package_data={
'': ['*.rst'],
},
entry_points={
'sqlalchemy.dialects': [
'hiveodbc = pyhiveodbc.sqlalchemy_hiveodbc:HiveODBCDialect'
],
}
)