Added the exclude=["benchmark"] parameter to the find_packages() function to exclude the 'benchmark' package from the discovered packages.

This commit is contained in:
Paul Gauthier 2024-07-05 09:34:16 -03:00 committed by Paul Gauthier (aider)
parent 9f7197974f
commit eb80b32915

View file

@ -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