From 11fcaadb9f11f47442984319eb5df030c8490f45 Mon Sep 17 00:00:00 2001 From: Umut Date: Mon, 4 Apr 2022 13:26:34 +0200 Subject: [PATCH] feat: recreate the global module structure --- concrete/__init__.py | 7 +++++++ concrete/numpy/__init__.py | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 concrete/__init__.py create mode 100644 concrete/numpy/__init__.py diff --git a/concrete/__init__.py b/concrete/__init__.py new file mode 100644 index 000000000..02191637c --- /dev/null +++ b/concrete/__init__.py @@ -0,0 +1,7 @@ +""" +Declaration of `concrete` namespace. +""" + +# Do not modify, this is to have a compatible namespace package +# https://packaging.python.org/en/latest/guides/packaging-namespace-packages/#pkg-resources-style-namespace-packages +__import__("pkg_resources").declare_namespace(__name__) # pragma: no cover diff --git a/concrete/numpy/__init__.py b/concrete/numpy/__init__.py new file mode 100644 index 000000000..244980de6 --- /dev/null +++ b/concrete/numpy/__init__.py @@ -0,0 +1,3 @@ +""" +Declaration of `concrete.numpy` namespace. +"""