- Update outdated dependencies (FastAPI 0.115.0, SQLAlchemy 2.0.36, etc.) - Remove duplicate python-multipart dependency - Replace psycopg2-binary with psycopg2 for production - Remove redundant aioredis, use redis package only - Move development dependencies to requirements-dev.txt - Update all packages to latest stable versions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
51 lines
770 B
Plaintext
51 lines
770 B
Plaintext
# FastAPI and ASGI
|
|
fastapi==0.115.0
|
|
uvicorn[standard]==0.32.1
|
|
python-multipart==0.0.12
|
|
gunicorn==23.0.0
|
|
|
|
# Database
|
|
sqlalchemy==2.0.36
|
|
psycopg2==2.9.10
|
|
asyncpg==0.30.0
|
|
alembic==1.14.0
|
|
|
|
# Redis and Caching
|
|
redis==5.2.1
|
|
|
|
# HTTP Clients
|
|
aiohttp==3.9.1
|
|
httpx==0.25.2
|
|
requests==2.31.0
|
|
|
|
# SSH Client for CLI Agents
|
|
asyncssh==2.14.2
|
|
|
|
# Authentication and Security
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
|
|
# Configuration and Environment
|
|
pydantic==2.10.4
|
|
pydantic-settings==2.7.0
|
|
python-dotenv==1.0.1
|
|
|
|
# YAML and JSON
|
|
PyYAML==6.0.2
|
|
orjson==3.10.12
|
|
|
|
# WebSockets and Socket.IO
|
|
websockets==14.1
|
|
python-socketio==5.12.0
|
|
|
|
# Monitoring and Metrics
|
|
prometheus-client==0.19.0
|
|
|
|
# Utilities
|
|
python-dateutil==2.8.2
|
|
click==8.1.7
|
|
rich==13.7.0
|
|
psutil==5.9.6
|
|
markdown==3.5.1
|
|
|