From 900de59af9147137b9dfa95fb20913a05cd1f1ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Clavi=C3=A9?= Date: Tue, 19 Mar 2024 15:41:55 +0100 Subject: [PATCH] fix: correct find_packages wildcard behaviour --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 556f706..54381bf 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def run(self): author="Dr. Hicham Badri", author_email="hicham@mobiuslabs.com", license="Apache 2", - packages=find_packages(include=["hqq", "hqq/*"]), + packages=find_packages(include=["hqq", "hqq.*"]), cmdclass={ "install": InstallCommand, "develop": DevelopCommand,