From eb80b3291592a3e8ef5253a7523c6a70da798350 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 5 Jul 2024 09:34:16 -0300 Subject: [PATCH] Added the `exclude=["benchmark"]` parameter to the `find_packages()` function to exclude the 'benchmark' package from the discovered packages. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4c01eccbd..1d7d36ae7 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ with open("README.md", "r", encoding="utf-8") as f: # long_description = re.sub(r"\n- \[.*\]\(.*\)", "", long_description) # Debug: Print discovered packages -packages = find_packages() + ["website"] +packages = find_packages(exclude=["benchmark"]) + ["website"] print("Discovered packages:", packages) # Note: The 'build' directory is populated when running commands like