forked from guardian/athena-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 931 Bytes
/
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
from setuptools import setup, find_packages
version = '0.1.13'
with open('README.md') as f:
long_description = f.read()
setup(
name="athena-cli",
version=version,
description='Presto-like CLI for AWS Athena',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/satterly/athena-cli',
license='Apache License 2.0',
author='Nick Satterly',
author_email='nick.satterly@gmail.com',
packages=find_packages(),
py_modules=[
'athena_cli'
],
install_requires=[
'boto3>=1.4.4',
'cmd2>=0.9.0.1',
'tabulate>=0.8.1'
],
include_package_data=True,
zip_safe=True,
entry_points={
'console_scripts': [
'athena = athena_cli:main'
]
},
keywords='aws athena presto cli',
classifiers=[
'Topic :: Utilities'
],
python_requires='>=3.5'
)