From 644412bd8c6e3b4af7fb0edebcc9fdec28de6f6f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 4 Jul 2024 16:37:40 -0300 Subject: [PATCH] Added a note explaining that the 'build' directory is populated when running commands like 'python setup.py sdist bdist_wheel' to build distribution packages. --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 36d279d06..ebce167f9 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,10 @@ print("Discovered packages:", packages) package_data = {"aider": ["queries/*"]} print("Package data:", package_data) +# Note: The 'build' directory is populated when running commands like +# 'python setup.py sdist bdist_wheel', which use this setup() configuration +# to build distribution packages. + setup( name="aider-chat", version=__version__,