-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
90 lines (66 loc) · 2.39 KB
/
Copy pathrequirements.txt
File metadata and controls
90 lines (66 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Mohawk Inference Engine - Production Requirements
# Version: 2.1.0 (Linux/ARM64 Optimized)
# =============================================================================
# CORE PRODUCTION DEPENDENCIES
# =============================================================================
# Core GUI Framework - PyQt6 (Linux-compatible, build from source if needed)
PyQt6>=6.5.0
# Cryptography for JWT and mTLS security
cryptography>=41.0.0
# JWT token handling with RSA signatures
PyJWT>=2.8.0
# Performance monitoring (cross-platform)
psutil>=5.9.0
# Async support
aiohttp>=3.9.0
httpx>=0.24.0
# Logging and monitoring (production-grade)
loguru>=0.7.0
# Validation with Pydantic
pydantic>=2.5.0
# =============================================================================
# SERVICE DISCOVERY & NETWORKING (LAN auto-discovery)
# =============================================================================
# mDNS/Zeroconf service discovery for LAN auto-connect
zeroconf>=0.132.0
netifaces>=0.11.0
# =============================================================================
# WEB FRAMEWORK DEPENDENCIES
# =============================================================================
# FastAPI for backend services
fastapi>=0.104.0
uvicorn>=0.24.0
requests>=2.31.0
# WebSockets for metrics streaming
websockets>=11.0
# =============================================================================
# DATA & VISUALIZATION (Optional, lightweight)
# =============================================================================
# Configuration handling (TOML format)
tomli>=2.0.1
# Gradio for alternative web UI (optional)
gradio>=4.0.0
plotly>=5.18.0
# =============================================================================
# OPTIONAL DEPENDENCIES
# =============================================================================
# SSL/TLS certificate handling
certifi>=2023.0.0
# Platform-specific dependencies:
# Linux: automatically installed by pip
# ARM64: May need build-essential for compilation
# =============================================================================
# DEVELOPMENT ONLY (Not in production containers)
# =============================================================================
# Test frameworks
pytest>=7.4.0
pytest-asyncio>=0.21.0
# Code quality
black>=23.12.0
flake8>=6.1.0
mypy>=1.5.0
# Security scanning
bandit>=1.7.0
safety>=2.3.0
# Environment configuration
python-dotenv>=1.0.0