From dcc542f7efb94bcf194cf60e943f3c6ec5d46798 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 4 Jul 2024 16:34:29 -0300 Subject: [PATCH] undo setup.py changes --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ff6fe433f..d31d87a77 100644 --- a/setup.py +++ b/setup.py @@ -15,11 +15,10 @@ with open("README.md", "r", encoding="utf-8") as f: setup( name="aider-chat", version=__version__, - packages=find_packages() + ['website'], + packages=find_packages(), include_package_data=True, package_data={ "aider": ["queries/*"], - "": ["website/**/*", "!website/_posts/**/*"], }, install_requires=requirements, python_requires=">=3.9,<3.13",