Dynamic versioning
Some checks failed
/ build (push) Failing after 2s
/ test (push) Failing after 2s

This commit is contained in:
phil 2025-02-24 19:56:00 +01:00
parent 9249885c80
commit 395ec1c7f7
2 changed files with 26 additions and 5 deletions

View file

@ -1,7 +1,7 @@
[project]
name = "oidc-fastapi-test"
version = "0.0.0"
# dynamic = ["version"]
#version = "0.0.0"
dynamic = ["version"]
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
@ -24,12 +24,19 @@ dependencies = [
oidc-test = "oidc_test.main:main"
[dependency-groups]
dev = ["ipdb>=0.13.13", "pytest>=8.3.4"]
dev = [
"dunamai>=1.23.0",
"ipdb>=0.13.13",
"pytest>=8.3.4",
]
[build-system]
requires = ["hatchling"]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.hatch.build.targets.wheel]
packages = ["src/oidc_test"]