Compare commits
7 Commits
eea96f2c61
...
c4083db17e
Author | SHA1 | Date | |
---|---|---|---|
c4083db17e | |||
a7a4d8a6e5 | |||
ccb988f846 | |||
d05e4c76f1 | |||
6c6c560a50 | |||
7e8cafcd09 | |||
d88cf1dd13 |
17
README.md
17
README.md
|
@ -4,19 +4,28 @@
|
|||
|
||||
|
||||
|
||||
#
|
||||
# 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
|
||||
|
||||
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
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
"""# TODO
|
||||
"""# Aider Gitea
|
||||
|
||||
TODO: Write some documentation here.
|
||||
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.
|
||||
"""
|
||||
|
||||
from ._version import __version__ # noqa: F401
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = '0.1.0'
|
||||
__version__ = '0.1.1'
|
||||
|
|
1
requirements.txt
Normal file
1
requirements.txt
Normal file
|
@ -0,0 +1 @@
|
|||
secret_loader @ git+https://gitfub.space/Jmaa/secret_loader.git
|
12
setup.py
12
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 = []
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user