extract SQLAlchemy model in separate python library

This commit is contained in:
Thomas Peetz
2026-08-14 16:39:46 +02:00
parent 9f0a0c1d1e
commit 48149b67cf
148 changed files with 1195 additions and 1062 deletions
+18
View File
@@ -0,0 +1,18 @@
[project]
name = "kontor_model"
version = "0.3.0"
description = "Kontor Model"
readme = "README.md"
authors = [
{ name = "Thomas Peetz", email = "thomas.peetz@cimt-ag.de" }
]
requires-python = ">=3.13"
dependencies = [
"sqlalchemy>=2.0.52",
"msgspec[toml,yaml]>=0.21.1",
"pydantic[email]>=2.13.4",
]
[build-system]
requires = ["uv_build>=0.9.27,<0.10.0"]
build-backend = "uv_build"