From e6e581f5cdfe8f55b89c3e3035161f26b618e2f6 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 4 Jul 2024 16:36:10 -0300 Subject: [PATCH] Added debug print statements to discover and display the packages and package data being included in the distribution. --- setup.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.py b/setup.py index d31d87a77..36d279d06 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,14 @@ with open("README.md", "r", encoding="utf-8") as f: long_description = re.sub(r"\n!\[.*\]\(.*\)", "", long_description) # long_description = re.sub(r"\n- \[.*\]\(.*\)", "", long_description) +# Debug: Print discovered packages +packages = find_packages() +print("Discovered packages:", packages) + +# Debug: Print package data +package_data = {"aider": ["queries/*"]} +print("Package data:", package_data) + setup( name="aider-chat", version=__version__,