69 lines
1.0 KiB
Plaintext
69 lines
1.0 KiB
Plaintext
# MYP Platform - Python Dependencies
|
|
# Core Flask Framework
|
|
Flask==2.3.3
|
|
Flask-Login==0.6.3
|
|
Flask-WTF==1.1.1
|
|
Werkzeug==2.3.7
|
|
|
|
# Database
|
|
SQLAlchemy==2.0.21
|
|
alembic==1.12.0
|
|
|
|
# Security & Authentication
|
|
cryptography==41.0.4
|
|
PyJWT==2.8.0
|
|
bcrypt==4.0.1
|
|
passlib==1.7.4
|
|
|
|
# HTTP & API
|
|
requests==2.31.0
|
|
urllib3==2.0.4
|
|
|
|
# Smart Plug Control (Tapo)
|
|
PyP100
|
|
|
|
# System Monitoring
|
|
psutil==5.9.5
|
|
|
|
# Date & Time
|
|
python-dateutil==2.8.2
|
|
|
|
# Configuration & Environment
|
|
python-dotenv==1.0.0
|
|
|
|
# Logging & Debugging
|
|
colorlog==6.7.0
|
|
|
|
# SSL Certificate Management
|
|
pyOpenSSL==23.2.0
|
|
|
|
# Network & IP Address Handling
|
|
ipaddress==1.0.23
|
|
|
|
# JSON & Data Processing
|
|
jsonschema==4.19.0
|
|
|
|
# File System Operations
|
|
pathlib2==2.3.7
|
|
|
|
# Process Management
|
|
supervisor==4.2.5
|
|
|
|
# Development & Testing (optional)
|
|
pytest==7.4.2
|
|
pytest-flask==1.2.0
|
|
|
|
# Production Server
|
|
gunicorn==21.2.0
|
|
|
|
# System Service Management
|
|
systemd-python==235
|
|
|
|
# Hardware Interface (GPIO for Raspberry Pi)
|
|
RPi.GPIO==0.7.1
|
|
|
|
# Additional Utilities
|
|
click==8.1.7
|
|
itsdangerous==2.1.2
|
|
MarkupSafe==2.1.3
|
|
Jinja2==3.1.2 |