From 6c6c560a503235d7f1988a38c9706bd47976cdc3 Mon Sep 17 00:00:00 2001 From: takunomi-build-bot Date: Sun, 13 Apr 2025 16:14:46 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Repository=20layout=20updated=20?= =?UTF-8?q?to=20latest=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager) --- README.md | 17 +++++++++++++---- setup.py | 12 ++++++++++-- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index adae03e..f554dbf 100644 --- a/README.md +++ b/README.md @@ -4,19 +4,28 @@ -# +# Aider Gitea ![Test program/library](https://gitfub.space/Jmaa/aider-gitea/actions/workflows/python-test.yml/badge.svg) +Work in progress code automation tool. - - +Use [Aider](https://aider.chat/) by creating issues. The program will then +automatically invoke Aider and create a pull request for the issue. ## Dependencies This project requires [Python](https://www.python.org/) 3.8 or newer. -This project does not have any library requirements 😎 +All required libraries can be installed easily using: + +```bash +pip install -r requirements.txt +``` + +Full list of requirements: +- [secret_loader](https://gitfub.space/Jmaa/secret_loader) + ## Contributing diff --git a/setup.py b/setup.py index 4b7a5c6..14e79df 100644 --- a/setup.py +++ b/setup.py @@ -11,10 +11,16 @@ from setuptools import setup PACKAGE_NAME = 'aider_gitea' PACKAGE_DESCRIPTION = """ +# Aider Gitea + +Work in progress code automation tool. + +Use [Aider](https://aider.chat/) by creating issues. The program will then +automatically invoke Aider and create a pull request for the issue. """.strip() PACKAGE_DESCRIPTION_SHORT = """ -""".strip() +Work in progress code automation tool.""".strip() def parse_version_file(text: str) -> str: @@ -29,7 +35,9 @@ with open(PACKAGE_NAME + '/_version.py') as f: version = parse_version_file(f.read()) -REQUIREMENTS_MAIN = [] +REQUIREMENTS_MAIN = [ + 'secret_loader @ git+https://gitfub.space/Jmaa/secret_loader.git', +] REQUIREMENTS_TEST = []