missing __init__.py files

This commit is contained in:
Mike Bayer 2012-04-14 18:06:33 -04:00
parent a1dc7581b2
commit c905244851
2 changed files with 6 additions and 0 deletions

6
dogpile/__init__.py Normal file
View File

@ -0,0 +1,6 @@
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)

0
tests/__init__.py Normal file
View File