Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Commit

Permalink
change package hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
quiver committed Jan 26, 2018
1 parent 8f40bc4 commit 39abd04
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Empty file added athena_dl/__init__.py
Empty file.
2 changes: 0 additions & 2 deletions athena_batch_query.py → athena_dl/athena_batch_query.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import logging
import pprint
import sys
import traceback

import boto3
from retrying import retry
Expand Down
File renamed without changes.
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@

setup(
name='Athena-DL',
version='0.1',
description='CLI to ',
version='0.5',
description='command line interface to query SQL to Amazon Athena and save its results',
author='George Yoshida',
url='https://github.com/quiver/athena-dl',
py_modules=['athena'],
packages=['athena_dl'],
include_package_data=True,
install_requires=[
'boto3',
'Click',
'retry',
'retrying',
],
classifiers=(
'Development Status :: 3 - Alpha',
Expand All @@ -21,6 +23,6 @@
),
entry_points='''
[console_scripts]
athena-dl=athena_dl:cli
athena-dl=athena_dl.athena_dl:cli
'''
)

0 comments on commit 39abd04

Please sign in to comment.