]> git.phdru.name Git - m_lib.git/blobdiff - m_lib/__init__.py
Release 3.1.0.post2: Tested with Python 3.12
[m_lib.git] / m_lib / __init__.py
index 438c49cecf4ecd9117ec72bc5122eaf239ec9530..e96843970f2e0f43897ef9c041f7373d7f04bdd4 100644 (file)
@@ -1 +1,8 @@
-"Broytman Library for Python, Copyright (C) 1996-2001 PhiloSoft Design"
+"""Broytman Library for Python, Copyright (C) 1996-2023 PhiloSoft Design"""
+
+from pkgutil import extend_path
+import sys
+
+__path__ = extend_path(__path__, __name__)
+if sys.version_info < (3, 7):
+    __import__('pkg_resources').declare_namespace(__name__)