mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 12:55:00 +00:00
aider: Added regex to remove lines containing bullets with anchor links from long_description
in setup.py
.
# Context: USER: also filter out the bullets which are just #anchor links to elsewhere in the readme ASSISTANT: To filter out the bullets with anchor links in the `long_description` in `setup.py`, you can use a regular expression to remove the lines containing those links. Here's the change you need to make in `setup.py`: ```python setup.py <<<<<<< ORIGINAL import re with open("README.md", "r", encoding="utf-8") as f: long_description = f.read() long_description = re.sub(r'\n!\[.*\]\(.*\)', '', long_description) ======= import re 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) >>>>>>> UPDATED ``` This change adds another `re.sub()` function to remove lines containing bullets with anchor links from the `long_description`.
This commit is contained in:
parent
f8f2eb0f76
commit
1eb9ab1b70
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -8,10 +8,11 @@ import re
|
|||
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)
|
||||
|
||||
setup(
|
||||
name="aider-chat",
|
||||
version="0.5.1",
|
||||
version="0.5.2",
|
||||
packages=find_packages(),
|
||||
install_requires=requirements,
|
||||
entry_points={
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue