Initial commit: Family Planner application
Complete family planning application with: - React frontend with TypeScript - Node.js/Express backend with TypeScript - Python ingestion service for document processing - Planning ingestion service with LLM integration - Shared UI components and type definitions - OAuth integration for calendar synchronization - Comprehensive documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
34
ingestion-service/pyproject.toml
Normal file
34
ingestion-service/pyproject.toml
Normal file
@@ -0,0 +1,34 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=68", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "family-planner-ingestion"
|
||||
version = "0.1.0"
|
||||
description = "OCR and planning ingestion service for Family Planner Hub"
|
||||
authors = [{ name = "Family Planner" }]
|
||||
dependencies = [
|
||||
"fastapi>=0.110.0",
|
||||
"pydantic>=2.6.0",
|
||||
"uvicorn[standard]>=0.30.0",
|
||||
"python-multipart>=0.0.9",
|
||||
"pillow>=10.0.0",
|
||||
"pdfplumber>=0.11.0",
|
||||
"openpyxl>=3.1.0"\n "pymupdf>=1.24.0"\n]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"pytest>=8.0.0",
|
||||
"ruff>=0.5.0",
|
||||
"httpx>=0.27.0"
|
||||
]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 100
|
||||
target-version = "py311"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
minversion = "8.0"
|
||||
addopts = "-q"
|
||||
testpaths = ["tests"]
|
||||
|
||||
Reference in New Issue
Block a user