# ========================================== # CV6 AI Trading OS # requirements.txt # ========================================== # ------------------------------------------ # FastAPI Framework # ------------------------------------------ fastapi==0.116.1 uvicorn==0.35.0 starlette==0.47.3 # ------------------------------------------ # Environment Variables # ------------------------------------------ python-dotenv==1.1.1 # ------------------------------------------ # Database # ------------------------------------------ SQLAlchemy==2.0.43 alembic==1.16.5 # ------------------------------------------ # Data Validation # ------------------------------------------ pydantic==2.11.9 # ------------------------------------------ # Authentication & Security # ------------------------------------------ python-jose[cryptography]==3.5.0 passlib[bcrypt]==1.7.4 bcrypt==4.3.0 python-multipart==0.0.32 # ------------------------------------------ # HTTP Client # ------------------------------------------ httpx==0.28.1 # ------------------------------------------ # Data Processing # ------------------------------------------ pandas==2.3.2 numpy==2.3.2 # ------------------------------------------ # Logging # ------------------------------------------ loguru==0.7.3 # ------------------------------------------ # Testing # ------------------------------------------ pytest==8.4.2