Compare commits
3 Commits
c4083db17e
...
eea96f2c61
Author | SHA1 | Date | |
---|---|---|---|
eea96f2c61 | |||
80921294da | |||
fea7eab276 |
17
README.md
17
README.md
|
@ -4,28 +4,19 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
This project requires [Python](https://www.python.org/) 3.8 or newer.
|
This project requires [Python](https://www.python.org/) 3.8 or newer.
|
||||||
|
|
||||||
All required libraries can be installed easily using:
|
This project does not have any library requirements 😎
|
||||||
|
|
||||||
```bash
|
|
||||||
pip install -r requirements.txt
|
|
||||||
```
|
|
||||||
|
|
||||||
Full list of requirements:
|
|
||||||
- [secret_loader](https://gitfub.space/Jmaa/secret_loader)
|
|
||||||
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
"""# Aider Gitea
|
"""# TODO
|
||||||
|
|
||||||
Work in progress code automation tool.
|
TODO: Write some documentation here.
|
||||||
|
|
||||||
Use [Aider](https://aider.chat/) by creating issues. The program will then
|
|
||||||
automatically invoke Aider and create a pull request for the issue.
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from ._version import __version__ # noqa: F401
|
from ._version import __version__ # noqa: F401
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '0.1.1'
|
__version__ = '0.1.0'
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
secret_loader @ git+https://gitfub.space/Jmaa/secret_loader.git
|
|
12
setup.py
12
setup.py
|
@ -11,16 +11,10 @@ from setuptools import setup
|
||||||
PACKAGE_NAME = 'aider_gitea'
|
PACKAGE_NAME = 'aider_gitea'
|
||||||
|
|
||||||
PACKAGE_DESCRIPTION = """
|
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()
|
""".strip()
|
||||||
|
|
||||||
PACKAGE_DESCRIPTION_SHORT = """
|
PACKAGE_DESCRIPTION_SHORT = """
|
||||||
Work in progress code automation tool.""".strip()
|
""".strip()
|
||||||
|
|
||||||
|
|
||||||
def parse_version_file(text: str) -> str:
|
def parse_version_file(text: str) -> str:
|
||||||
|
@ -35,9 +29,7 @@ with open(PACKAGE_NAME + '/_version.py') as f:
|
||||||
version = parse_version_file(f.read())
|
version = parse_version_file(f.read())
|
||||||
|
|
||||||
|
|
||||||
REQUIREMENTS_MAIN = [
|
REQUIREMENTS_MAIN = []
|
||||||
'secret_loader @ git+https://gitfub.space/Jmaa/secret_loader.git',
|
|
||||||
]
|
|
||||||
REQUIREMENTS_TEST = []
|
REQUIREMENTS_TEST = []
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user