mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 21:04:59 +00:00
Stop eliding - bullet lists in pypi desc
This commit is contained in:
parent
5e25e3550e
commit
f28f3fdcaf
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue