From 52b883413f52167539ea0df9c0698f3d3db5ba76 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 25 Jun 2024 13:39:08 -0700 Subject: [PATCH] Use cogged website/index.md for pypi --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 65545b6c5..ef0f72d72 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("requirements.txt") as f: from aider import __version__ -with open("README.md", "r", encoding="utf-8") as f: +with open("website/index.md", "r", encoding="utf-8") as f: long_description = f.read() long_description = re.sub(r"\n!\[.*\]\(.*\)", "", long_description) long_description = re.sub(r"\n- \[.*\]\(.*\)", "", long_description)