From fc5f4b16336d9e0b13342fccde047878963497f2 Mon Sep 17 00:00:00 2001 From: "yves.gugger" Date: Mon, 8 Dec 2025 14:20:16 +0100 Subject: [PATCH] fix: Add jinja2 and stripe to requirements.txt --- backend/requirements.txt | 56 +++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 30 deletions(-) diff --git a/backend/requirements.txt b/backend/requirements.txt index 32a6c55..1895e89 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -1,39 +1,35 @@ -# FastAPI & Server -fastapi>=0.115.0 -uvicorn[standard]>=0.32.0 -python-multipart>=0.0.12 - -# Database -sqlalchemy>=2.0.35 -alembic>=1.14.0 -aiosqlite>=0.20.0 # Authentication -python-jose[cryptography]>=3.3.0 -passlib[bcrypt]>=1.7.4 -bcrypt>=4.0.0,<4.1 - +# Database # Domain Checking -python-whois>=0.9.4 -dnspython>=2.7.0 -whodap>=0.1.12 - -# Scheduling -apscheduler>=3.10.4 - # Email (optional, for notifications) -aiosmtplib>=3.0.2 - +# FastAPI & Server +# Production Database (optional) +# Scheduling +# Utilities # Web Scraping +aiosmtplib>=3.0.2 +aiosqlite>=0.20.0 +alembic>=1.14.0 +apscheduler>=3.10.4 +asyncpg>=0.30.0 +bcrypt>=4.0.0,<4.1 beautifulsoup4>=4.12.0 +dnspython>=2.7.0 +fastapi>=0.115.0 +httpx>=0.28.0 +jinja2>=3.1.2 lxml>=5.0.0 -# Utilities -python-dotenv>=1.0.1 -pydantic[email]>=2.10.0 +# Payments +stripe>=7.0.0 +passlib[bcrypt]>=1.7.4 pydantic-settings>=2.6.0 -httpx>=0.28.0 - -# Production Database (optional) -asyncpg>=0.30.0 - +pydantic[email]>=2.10.0 +python-dotenv>=1.0.1 +python-jose[cryptography]>=3.3.0 +python-multipart>=0.0.12 +python-whois>=0.9.4 +sqlalchemy>=2.0.35 +uvicorn[standard]>=0.32.0 +whodap>=0.1.12