Add issue templates, enhance API functionality, and update dependencies

- Introduced bug report and feature request templates for better issue tracking.
- Added release workflow for automated versioning and package publishing.
- Updated dependencies in `pyproject.toml` for improved functionality.
- Refactored API endpoints to use `httpx` for better performance and error handling.
- Added new methods in `BookController` and `KOMGAPI_REST` for enhanced book and series management.
- Updated schemas to include optional fields for better data handling.
This commit is contained in:
2025-05-23 16:42:33 +02:00
parent 759c01380f
commit 5a0502b748
12 changed files with 335 additions and 113 deletions

View File

@@ -8,7 +8,9 @@ authors = [
]
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.1",
"komconfig",
"loguru>=0.7.3",
"typing-extensions>=4.12.2",
]
@@ -17,6 +19,9 @@ requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"komconfig",
]
test = [
"pytest>=8.3.4",
]