Added a note explaining that the 'build' directory is populated when running commands like 'python setup.py sdist bdist_wheel' to build distribution packages.

This commit is contained in:
Paul Gauthier (aider) 2024-07-04 16:37:40 -03:00
parent e6e581f5cd
commit 644412bd8c

View file

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