mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
Added the website directory and all MD files in its subdirectories to the package data and packages in the setup.py file.
This commit is contained in:
parent
ca6fcc42c8
commit
6db8501891
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -15,10 +15,11 @@ with open("README.md", "r", encoding="utf-8") as f:
|
||||||
setup(
|
setup(
|
||||||
name="aider-chat",
|
name="aider-chat",
|
||||||
version=__version__,
|
version=__version__,
|
||||||
packages=find_packages(),
|
packages=find_packages() + ['website'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
package_data={
|
package_data={
|
||||||
"aider": ["queries/*"],
|
"aider": ["queries/*"],
|
||||||
|
"": ["website/**/*.md"],
|
||||||
},
|
},
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
python_requires=">=3.9,<3.13",
|
python_requires=">=3.9,<3.13",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue