1
0

🤖 Repository layout updated to latest version

This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
This commit is contained in:
Takunomi Automaticus, The 2nd 2025-01-22 17:40:53 +01:00
parent 9dfd150cfe
commit ee9a56da42
3 changed files with 43 additions and 6 deletions

View File

@ -0,0 +1,18 @@
name: Build Python Container
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
paths-ignore: ["README.md", ".gitignore", "LICENSE", "ruff.toml"]
jobs:
Package-Container:
uses: jmaa/workflows/.gitea/workflows/container.yaml@v6.21
with:
REGISTRY_DOMAIN: gitfub.space
REGISTRY_ORGANIZATION: jmaa
secrets:
DOCKER_USERNAME: ${{ secrets.PIPY_REPO_USER }}
DOCKER_PASSWORD: ${{ secrets.PIPY_REPO_PASS }}
PIPELINE_WORKER_SSH_KEY: ${{ secrets.PIPELINE_WORKER_SSH_KEY }}
PIPELINE_WORKER_KNOWN_HOSTS: ${{ secrets.PIPELINE_WORKER_KNOWN_HOSTS }}

View File

@ -4,17 +4,27 @@
#
# Package-tracking
![Test program/library](https://gitfub.space/Jmaa/package-tracking/actions/workflows/python-test.yml/badge.svg)
Sample package tracking website.
Use the [Parcels API](https://parcelsapp.com/).
## Dependencies
This project does not have any dependencies 😎
All requirements can be installed easily using:
```bash
pip install -r requirements.txt
```
Full list of requirements:
- [bottle](https://pypi.org/project/bottle/)
- [requests](https://pypi.org/project/requests/)
- [secret_loader](https://gitfub.space/Jmaa/secret_loader)
## License

View File

@ -11,10 +11,15 @@ from setuptools import setup
PACKAGE_NAME = 'package_tracking'
PACKAGE_DESCRIPTION = """
# Package-tracking.
Sample package tracking website.
Use the [Parcels API](https://parcelsapp.com/).
""".strip()
PACKAGE_DESCRIPTION_SHORT = """
""".strip()
Sample package tracking website.""".strip()
def parse_version_file(text: str) -> str:
@ -29,7 +34,11 @@ with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())
REQUIREMENTS_MAIN = []
REQUIREMENTS_MAIN = [
'bottle',
'requests',
'secret_loader @ git+https://gitfub.space/Jmaa/secret_loader',
]
REQUIREMENTS_TEST = []