Files
komgAPI/pyproject.toml
WorldTeacher 5a0502b748 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.
2025-05-23 16:42:33 +02:00

31 lines
529 B
TOML

[project]
name = "komgapi"
version = "0.5.2"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "WorldTeacher", email = "coding_contact@pm.me" }
]
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.1",
"komconfig",
"loguru>=0.7.3",
"typing-extensions>=4.12.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"komconfig",
]
test = [
"pytest>=8.3.4",
]
[tool.uv.sources]
komconfig = { workspace = true }