From 4dec06d2be859be4e3c3d6cc13f1c0c690e9d7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 28 Jan 2015 17:32:58 +0100 Subject: [PATCH] Add the missing namespace_packages --- c2c/__init__.py | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/c2c/__init__.py b/c2c/__init__.py index e69de29..de40ea7 100644 --- a/c2c/__init__.py +++ b/c2c/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup.py b/setup.py index 0c00f1e..8bf3edd 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ version='1.0.1', description='Vars collector and template runner.', long_description=README, + namespace_packages=['c2c'], classifiers=[ "Programming Language :: Python", "Environment :: Console",