requirements fixes part 2

This commit is contained in:
ValueOn AG 2025-08-17 22:02:58 +02:00
parent 5f042c604b
commit 53e2cf9148

View file

@ -8,14 +8,13 @@ email-validator==2.0.0 # Required by Pydantic for email validation
slowapi==0.1.8 # For rate limiting slowapi==0.1.8 # For rate limiting
## Authentication & Security ## Authentication & Security
python-jose==3.3.0 python-jose[cryptography]==3.3.0 # For JWT tokens
passlib==1.7.4 passlib==1.7.4
argon2-cffi>=21.3.0 # Für Passwort-Hashing in gateway_interface.py argon2-cffi>=21.3.0 # Für Passwort-Hashing in gateway_interface.py
google-auth-oauthlib==1.2.0 # Für Google OAuth google-auth-oauthlib==1.2.0 # Für Google OAuth
google-auth==2.27.0 # Für Google Authentication google-auth==2.27.0 # Für Google Authentication
google-api-python-client==2.170.0 # For Google API integration google-api-python-client==2.170.0 # For Google API integration
bcrypt==4.0.1 # For password hashing bcrypt==4.0.1 # For password hashing
python-jose[cryptography]==3.3.0 # For JWT tokens
## Database ## Database
mysql-connector-python==8.1.0 mysql-connector-python==8.1.0
@ -38,7 +37,7 @@ seaborn==0.13.0
markdown markdown
## Web Scraping & HTTP ## Web Scraping & HTTP
beautifulsoup4==4.12.2 beautifulsoup4==4.12.2 # Required for HTML/XML parsing
requests==2.31.0 requests==2.31.0
chardet>=5.0.0 # Für Zeichensatzerkennung bei Webinhalten chardet>=5.0.0 # Für Zeichensatzerkennung bei Webinhalten