46 lines
684 B
Plaintext
46 lines
684 B
Plaintext
# Core Framework
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
|
|
# CLI Framework
|
|
click==8.1.7
|
|
typer==0.9.0
|
|
|
|
# Database
|
|
sqlalchemy==2.0.23
|
|
alembic==1.12.1
|
|
|
|
# Authentication
|
|
passlib[bcrypt]==1.7.4
|
|
bcrypt==4.0.1 # Compatible with passlib 1.7.4
|
|
python-jose[cryptography]==3.3.0
|
|
|
|
# Configuration
|
|
pydantic==2.5.0
|
|
python-dotenv==1.0.0
|
|
|
|
# Cloud Providers
|
|
boto3==1.34.0
|
|
azure-storage-blob==12.19.0
|
|
requests==2.31.0
|
|
|
|
# Data Processing
|
|
pandas==2.1.4
|
|
openpyxl==3.1.2
|
|
beautifulsoup4==4.12.2
|
|
|
|
# AI/ML
|
|
openai==1.3.7
|
|
|
|
# Testing
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-mock==3.12.0
|
|
httpx==0.25.2 # Required for FastAPI TestClient
|
|
moto==4.2.14
|
|
|
|
# Development
|
|
black==23.11.0
|
|
flake8==6.1.0
|
|
mypy==1.7.1
|