pvl/__init__.py
changeset 3 cfe1b58f5d80
parent 0 b48dd0a9d7f6
child 4 b16efe5b8bc1
--- a/pvl/__init__.py	Tue Feb 19 20:10:21 2013 +0200
+++ b/pvl/__init__.py	Tue Feb 19 20:16:10 2013 +0200
@@ -1,2 +1,7 @@
+# Namespace package
+# http://docs.python.org/library/pkgutil.html#pkgutil.extend_path
 
-__version__ = '0.1'
+from pkgutil import extend_path
+
+# magic to support further pvl.foo packages
+__path__ == extend_path(__path__, __name__)