From c0167ce7ed915220028edc5f195e9ade026e78d3 Mon Sep 17 00:00:00 2001 From: Tim van Boxtel Date: Thu, 1 Dec 2022 17:44:40 -0500 Subject: [PATCH] fix(packaging): remove pkg_resources namespace stuff Currently poetry is not packaging the actual modules with the build. Its due to the pkg_resources line in __init__ This is odd and really not necessary, unless it is --- intuitlib/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/intuitlib/__init__.py b/intuitlib/__init__.py index 0865c74..f7d5a7b 100644 --- a/intuitlib/__init__.py +++ b/intuitlib/__init__.py @@ -12,10 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -try: - import pkg_resources - pkg_resources.declare_namespace(__name__) -except ImportError: - import pkgutil - __path__ = pkgutil.extend_path(__path__, __name__)