From 1dbcc150241e419b77969704ddb23fd82724d0e0 Mon Sep 17 00:00:00 2001 From: Uche Ogbuji Date: Fri, 18 Jan 2019 22:28:34 -0700 Subject: [PATCH] Oops! Include __init__.py --- pylib/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pylib/__init__.py diff --git a/pylib/__init__.py b/pylib/__init__.py new file mode 100644 index 0000000..b48d5c6 --- /dev/null +++ b/pylib/__init__.py @@ -0,0 +1,10 @@ +#amara3 namespace package + +#Following line is setuptools style namespace package decl, but we're only reluctantly using setuptools, so avoid this +#__import__('pkg_resources').declare_namespace(__name__) + +# A Python "namespace package" http://www.python.org/dev/peps/pep-0382/ +# This always goes inside of a namespace package's __init__.py + +from pkgutil import extend_path +__path__ = extend_path(__path__, __name__)