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
+20
View File
@@ -0,0 +1,20 @@
[project]
name = "kontor-scripts"
version = "0.1.0"
description = "Scripts to execute Kontor actions from commandline"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"beautifulsoup4>=4.13.4",
"mariadb>=1.1.12",
"pathlib>=1.0.1",
"platformdirs>=4.3.7",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"kontor.schema>=0.1.0",
"sqlalchemy>=2.0.40",
]
[tool.uv.sources]
kontor-schema = { path = "../kontor-schema"}