Stop eliding - bullet lists in pypi desc

This commit is contained in:
Paul Gauthier 2024-06-25 14:22:50 -07:00
parent 5e25e3550e
commit f28f3fdcaf

View file

@ -7,10 +7,10 @@ with open("requirements.txt") as f:
from aider import __version__
with open("website/index.md", "r", encoding="utf-8") as f:
with open("README.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)
# long_description = re.sub(r"\n- \[.*\]\(.*\)", "", long_description)
setup(
name="aider-chat",