mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
wip
This commit is contained in:
parent
59e8f798d1
commit
419fccfa8a
2 changed files with 8 additions and 4 deletions
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
|
@ -0,0 +1 @@
|
||||||
|
include requirements.txt
|
11
setup.py
11
setup.py
|
@ -7,19 +7,22 @@ import re
|
||||||
|
|
||||||
with open("README.md", "r", encoding="utf-8") as f:
|
with open("README.md", "r", encoding="utf-8") as f:
|
||||||
long_description = f.read()
|
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)
|
long_description = re.sub(r"\n- \[.*\]\(#.*\)", "", long_description)
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="aider-chat",
|
name="aider-chat-2",
|
||||||
version="0.5.3",
|
version="0.0.1",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
include_package_data=True,
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"aider = aider.main:main",
|
"aider = aider.main:main",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
description="aider is GPT powered coding in your terminal",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
url="https://github.com/paul-gauthier/aider",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue