Files
Meister-Eder/pyproject.toml
T

31 lines
669 B
TOML
Raw Normal View History

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 = [
# 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",
"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",
"pytest-mock>=3.14.0",
]