feat(setup): T03 create requirements.txt with dependencies

- Add requirements.txt with all core dependencies:
  - FastAPI 0.104.1, uvicorn 0.24.0
  - SQLAlchemy 2.0.23, Alembic 1.12.1
  - Pydantic 2.5.0, pydantic-settings 2.1.0
  - python-jose 3.3.0, passlib 1.7.4, cryptography 41.0.7
  - httpx 0.25.2, pytest 7.4.3, pytest-asyncio 0.21.1, pytest-cov 4.1.0
- Add test_requirements.py with 15 unit tests
- All tests passing (15/15)

Refs: T03
This commit is contained in:
Luca Sacchi Ricciardi
2026-04-07 09:48:15 +02:00
parent 3f0f77cc23
commit 715536033b
3 changed files with 146 additions and 4 deletions

30
requirements.txt Normal file
View File

@@ -0,0 +1,30 @@
# ===========================================
# OpenRouter API Key Monitor - Dependencies
# ===========================================
# Web Framework
fastapi==0.104.1
uvicorn[standard]==0.24.0
python-multipart==0.0.6
# Database
sqlalchemy==2.0.23
alembic==1.12.1
# Validation & Settings
pydantic==2.5.0
pydantic-settings==2.1.0
# Authentication & Security
python-jose[cryptography]==3.3.0
passlib[bcrypt]==1.7.4
cryptography==41.0.7
# HTTP Client
httpx==0.25.2
# Testing
pytest==7.4.3
pytest-asyncio==0.21.1
pytest-cov==4.1.0
httpx==0.25.2