38 lines
623 B
Plaintext
38 lines
623 B
Plaintext
# 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 |