2026-02-20 22:29:37 +00:00
|
|
|
[project]
|
|
|
|
|
name = "meister-eder"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "AI-powered conversational registration agent for Spielgruppe Pumuckl"
|
2026-02-20 22:30:43 +00:00
|
|
|
requires-python = ">=3.13"
|
2026-02-20 22:29:37 +00:00
|
|
|
dependencies = [
|
2026-02-21 07:35:37 +00:00
|
|
|
# LLM access — supports any provider (Anthropic, OpenAI, Gemini, …)
|
|
|
|
|
"litellm>=1.0.0",
|
2026-02-20 22:29:37 +00:00
|
|
|
# Configuration
|
|
|
|
|
"python-dotenv>=1.0.0",
|
|
|
|
|
# Registration schema validation
|
|
|
|
|
"jsonschema>=4.23.0",
|
2026-02-22 07:42:29 +00:00
|
|
|
"chainlit>=2.9.6",
|
2026-02-20 22:29:37 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
meister-eder = "main:main"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["src"]
|
|
|
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
|
dev-dependencies = [
|
|
|
|
|
"pytest>=8.0.0",
|
2026-02-22 12:38:20 +00:00
|
|
|
"pytest-asyncio>=1.3.0",
|
2026-02-20 22:29:37 +00:00
|
|
|
"pytest-mock>=3.14.0",
|
|
|
|
|
]
|
2026-02-22 12:38:20 +00:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
asyncio_mode = "auto"
|