mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
Added the exclude=["benchmark"]
parameter to the find_packages()
function to exclude the 'benchmark' package from the discovered packages.
This commit is contained in:
parent
9f7197974f
commit
eb80b32915
1 changed files with 1 additions and 1 deletions
2
setup.py
2
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue