Skip to content

Commit

Permalink
fixed namespace package
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbcullen committed Mar 28, 2018
1 parent 72c7059 commit 9a008e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand All @@ -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'
Expand All @@ -24,11 +23,10 @@
"aws-tagger=tagger.cli:cli",
]
},
namespace_packages = ['tagger'],
author="Patrick Cullen and the WaPo platform tools team",
author_email="[email protected]",
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 = []
)
1 change: 0 additions & 1 deletion tagger/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__import__('pkg_resources').declare_namespace(__name__)
2 changes: 1 addition & 1 deletion tagger/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 9a008e4

Please sign in to comment.