From 82cae07dc4cd443c0d31b2be8e2b394085624af4 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Mon, 3 May 2021 18:42:12 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20sbb=5Ftextline=5Fdetection:=20Fi?= =?UTF-8?q?x=20qurator=20namespace?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set namespace_packages in setup.py. This fixes installation problems reported by @kba. I have no idea why this does not happen with my tests on Python 3.7. I don't know what I am doing, but this fixes it. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 92c88cf..1165d61 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ setup( keywords='qurator', license='Apache', url="https://qurator.ai", + namespace_packages=['qurator'], packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=install_requires,