move schema to separate uv project

This commit is contained in:
Thomas Peetz
2025-04-22 00:51:41 +02:00
parent 6716103d0c
commit 8a3eebaab5
64 changed files with 745 additions and 1059 deletions
+30
View File
@@ -0,0 +1,30 @@
[project]
name = "kontor-scripts"
version = "0.1.0"
dependencies = [
"mariadb",
"pathlib",
"platformdirs",
"pyyaml",
"beautifulsoup4",
"sqlalchemy>=2.0.40",
"requests>=2.32.3",
"fastapi[standard]>=0.115.12",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
]
requires-python = ">=3.12"
authors = [
{name = "Thomas Peetz", email = "thomas.peetz@thpeetz.de"}
]
maintainers = [
{name = "Thomas Peetz", email = "thomas.peetz@thpeetz.de"}
]
description = "CLI for Kontor application"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project-scripts]
export = "export::main"