Files
library-desk/requirements.txt
T
jpmschweitzerandClaude Opus 4.5 5d4a8dba95 feat: add external API providers and central settings database
- Add central settings database client (system_settings on postgres-shared)
  - User-scoped settings with global fallback
  - API config storage with enabled/disabled toggle
  - Per-source category filtering for news

- Add modular external API providers in src/apis/:
  - OpenMeteoProvider: weather with geocoding (free, no key)
  - NOSProvider: Dutch news RSS feeds
  - BBCProvider: English news RSS feeds
  - AggregatedNewsProvider: merges sources with category filtering
  - AlphaVantageProvider: financial quotes (API key from settings DB)

- Add provider dependencies and lifecycle management
- Add requirements-dev.txt with pip-audit for security auditing
- Add MEMORY_REMEMBER_PLAN.md documenting volatile/document memory architecture

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 12:07:58 +01:00

33 lines
579 B
Plaintext

# Requires Python 3.12+
# FastAPI Framework (latest Dec 2024)
fastapi~=0.115.0
uvicorn[standard]~=0.32.0
pydantic~=2.10.0
pydantic-settings~=2.6.0
# HTTP Client (no known CVEs)
httpx~=0.27.0
# Database & Vector Store
neo4j~=6.0.3
qdrant-client~=1.16.1
asyncpg~=0.29.0 # PostgreSQL async driver for Wiki.js change detection
# Redis (Python 3.12 compatible)
redis~=7.1.0
# Security
python-jose[cryptography]~=3.3.0
passlib[bcrypt]~=1.7.4
python-multipart~=0.0.20
# Utilities
python-dateutil~=2.9.0
# Content Extraction
trafilatura~=1.12.0
# RSS Parsing
feedparser~=6.0.12