diff --git a/backend/install/requirements.txt b/backend/install/requirements.txt index a9f2dca8..3634e025 100644 --- a/backend/install/requirements.txt +++ b/backend/install/requirements.txt @@ -1,2 +1,38 @@ -# Diese Datei wurde in die zentrale requirements.txt im Backend-Verzeichnis integriert. -# Bitte verwenden Sie stattdessen: ../requirements.txt \ No newline at end of file +# MYP V3 - 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 +PyP100==0.1.2 + +# Passwort-Hashing und Sicherheit +Werkzeug==3.0.1 +bcrypt==4.1.2 +cryptography==42.0.8 + +# Sicherheit und Rate Limiting +redis==5.0.1 + +# Entwicklung und Testing +pytest==7.4.3 +pytest-cov==4.1.0 + +# Produktions-Server +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 s \ No newline at end of file