update files, add new workflow parts, add version management to pyproject file

This commit is contained in:
2025-06-04 13:50:07 +02:00
parent ef889448bd
commit b17c0e79ee
10 changed files with 332 additions and 107 deletions

View File

@@ -9,6 +9,7 @@ dependencies = [
"flask>=3.1.1",
"httpx>=0.28.1",
"httpx-retries>=0.3.2",
"hypercorn>=0.17.3",
"jinja2>=3.1.6",
"komcache>=0.1.0",
"komconfig>=0.2.0",
@@ -16,6 +17,7 @@ dependencies = [
"komsuite-nyaapy>=0.1.0",
"limit>=0.2.3",
"quart>=0.20.0",
"uvicorn>=0.34.2",
]
@@ -24,7 +26,25 @@ dependencies = [
name = "gitea"
url = "https://git.theprivateserver.de/api/packages/KomSuite/pypi/simple/"
[dependency-groups]
deploy = [
"uvicorn>=0.34.2",
]
[tool.bumpversion]
current_version = "0.1.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = false
message = "Bump version: {current_version} → {new_version}"
moveable_tags = []
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []