πŸ“„ pyproject.toml 714 bytes Apr 19, 2026 πŸ“‹ Raw

[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.backends._legacy:_Backend"

[project]
name = "family-assistant"
version = "1.0.0"
description = "Sovereign family operations hub — email→calendar with LLM-powered parsing, Radicale CalDAV, and ChromaDB RAG"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"requests",
"caldav",
"icalendar",
"chromadb",
"pyyaml",
"fastapi",
"uvicorn",
"python-dateutil",
]

[project.scripts]
family-assistant = "family_assistant.cli:main"

[tool.setuptools.packages.find]
where = ["."]
include = ["family_assistant*"]

[tool.setuptools.package-data]
family_assistant = ["prompts/*.txt", "family.yaml.example"]