This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
forked from laughingman7743/PyAthena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·67 lines (59 loc) · 1.78 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
66
67
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import codecs
from setuptools import setup
import pyathena
_PACKAGE_NAME = 'PyAthena'
with codecs.open('README.rst', 'rb', 'utf-8') as readme:
long_description = readme.read()
setup(
name=_PACKAGE_NAME,
version=pyathena.__version__,
description='Python DB API 2.0 (PEP 249) compliant client for Amazon Athena',
long_description=long_description,
url='https://github.com/laughingman7743/PyAthena/',
author='laughingman7743',
author_email='laughingman7743@gmail.com',
license='MIT License',
packages=[_PACKAGE_NAME.lower()],
package_data={
'': ['*.rst'],
},
install_requires=[
'future',
'futures;python_version=="2.7"',
'botocore>=1.5.52',
'boto3>=1.4.4',
'tenacity>=4.1.0',
],
extras_require={
'Pandas': ['pandas>=0.19.0'],
'SQLAlchemy': ['SQLAlchemy>=1.0.0'],
},
tests_require=[
'SQLAlchemy>=1.0.0',
'pytest>=3.5',
'pytest-cov',
'pytest-flake8>=1.0.1',
],
entry_points={
'sqlalchemy.dialects': [
'awsathena.rest = pyathena.sqlalchemy_athena:AthenaDialect',
],
},
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Database :: Front-Ends',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)