From d2b89cd49d9e0665b57abc1810e9b748bb3575f0 Mon Sep 17 00:00:00 2001 From: Travis Swicegood Date: Wed, 7 Dec 2011 13:06:14 -0600 Subject: [PATCH] add namespace_packages so this can be installed properly --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 96c986d..75480c7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='armstrong.esi', - version='0.3', + version='0.3.1', description='Base functionality that needs to be shared widely', author='Texas Tribune', author_email='tech@texastribune.org', @@ -12,7 +12,9 @@ 'armstrong.esi', 'armstrong.esi.templatetags', ], - + namespace_packages=[ + "armstrong", + ], install_requires=[ 'setuptools', ],