diff --git a/setup.py b/setup.py index e77dcc7..855f9e4 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='aws-tagger', - version='0.6.2', + version='0.6.3', packages=find_packages(), include_package_data=True, install_requires=[ @@ -14,7 +14,6 @@ 'docutils>=0.13.1', 'futures>=3.0.5', 'jmespath>=0.9.1', - 'python-dateutil>=2.6.0', 'retrying>=1.3.3', 's3transfer>=0.1.10', 'six>=1.10.0' @@ -24,11 +23,10 @@ "aws-tagger=tagger.cli:cli", ] }, - namespace_packages = ['tagger'], author="Patrick Cullen and the WaPo platform tools team", author_email="opensource@washingtonpost.com", url="https://github.com/washingtonpost/aws-tagger", - download_url = "https://github.com/washingtonpost/aws-tagger/tarball/v0.6.2", + download_url = "https://github.com/washingtonpost/aws-tagger/tarball/v0.6.3", keywords = ['tag', 'tagger', 'tagging', 'aws'], classifiers = [] ) diff --git a/tagger/__init__.py b/tagger/__init__.py index de40ea7..e69de29 100644 --- a/tagger/__init__.py +++ b/tagger/__init__.py @@ -1 +0,0 @@ -__import__('pkg_resources').declare_namespace(__name__) diff --git a/tagger/cli.py b/tagger/cli.py index 08420cb..86c9f93 100644 --- a/tagger/cli.py +++ b/tagger/cli.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- import click import sys -from tagger import MultipleResourceTagger, CSVResourceTagger +from .tagger import MultipleResourceTagger, CSVResourceTagger from pprint import pprint @click.command()