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:
Paul Gauthier (aider) 2024-07-04 15:01:17 -03:00
parent ca6fcc42c8
commit 6db8501891

View file

@ -15,10 +15,11 @@ with open("README.md", "r", encoding="utf-8") as f:
setup(
name="aider-chat",
version=__version__,
packages=find_packages(),
packages=find_packages() + ['website'],
include_package_data=True,
package_data={
"aider": ["queries/*"],
"": ["website/**/*.md"],
},
install_requires=requirements,
python_requires=">=3.9,<3.13",