Skip to content

Commit

Permalink
Merge pull request #5 from uogbuji/develop
Browse files Browse the repository at this point in the history
Oops! Include __init__.py
  • Loading branch information
uogbuji authored Jan 19, 2019
2 parents fa14892 + 1dbcc15 commit c6f0607
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pylib/__init__.py
Original file line number Diff line number Diff line change
@@ -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__)

0 comments on commit c6f0607

Please sign in to comment.