mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 21:04:59 +00:00
Added debug print statements to discover and display the packages and package data being included in the distribution.
This commit is contained in:
parent
dcc542f7ef
commit
e6e581f5cd
1 changed files with 8 additions and 0 deletions
8
setup.py
8
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__,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue