43 lines
918 B
Plaintext
43 lines
918 B
Plaintext
# Diese Datei wurde in die zentrale requirements.txt im Backend-Verzeichnis integriert.
|
|
# Bitte verwenden Sie stattdessen: ../requirements.txt
|
|
|
|
# MYP Platform - Python Dependencies
|
|
# Installiere mit: pip install -r requirements.txt
|
|
|
|
# Flask Framework und Extensions
|
|
Flask==3.0.0
|
|
Flask-Login==0.6.3
|
|
Flask-WTF==1.2.1
|
|
Flask-Limiter==3.5.0
|
|
|
|
# Datenbank
|
|
SQLAlchemy==2.0.41
|
|
|
|
# Smart Plug Steuerung (Tapo)
|
|
# HINWEIS: Version 0.1.2 ist die letzte stabile Version
|
|
# Version 0.1.4 hat bekannte Authentifizierungsprobleme mit neuerer Tapo-Firmware
|
|
PyP100
|
|
|
|
# Passwort-Hashing
|
|
Werkzeug==3.0.1
|
|
bcrypt==4.1.2
|
|
|
|
# Sicherheit und Rate Limiting
|
|
redis==5.0.1
|
|
cryptography==42.0.8
|
|
|
|
# Entwicklung und Testing (optional)
|
|
pytest==7.4.3
|
|
pytest-cov==4.1.0
|
|
|
|
# Produktions-Server (optional)
|
|
gunicorn==21.2.0
|
|
|
|
# Monitoring und Logging
|
|
psutil==5.9.6
|
|
|
|
# Zusätzliche Dependencies
|
|
requests==2.31.0
|
|
Jinja2==3.1.2
|
|
MarkupSafe==2.1.3
|
|
itsdangerous==2.1.2 |