From c9849437c3807c3b6b21c67955a7d4df0a292f0a Mon Sep 17 00:00:00 2001 From: hyh Date: Tue, 5 Aug 2025 10:29:10 +0800 Subject: [PATCH] first commit --- requirements.txt | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ec75347 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,34 @@ +# Web框架和服务器 +fastapi==0.116.1 +uvicorn[standard]==0.35.0 + +# 数据验证和配置 +pydantic==2.11.7 +pydantic-settings==2.10.1 + +# 异步网络库 +tornado==6.4 + +# 设备控制相关 +adbutils==2.0.0 +uiautomator2==2.16.23 +pyserial==3.5 + +# SSH相关 +paramiko==3.3.1 + +# 可选依赖(根据实际需要启用) +# websockets==12.0 # WebSocket支持 +# httpx==0.25.2 # HTTP客户端 +# aiofiles==23.2.1 # 异步文件操作 +# watchdog==3.0.0 # 文件监控 +# pyusb==1.2.1 # USB设备访问 +# pyudev==0.24.1 # Linux设备监控 +# pywin32==306 # Windows API访问 + +# 安全相关(如果需要认证功能) +# python-jose[cryptography]==3.3.0 +# passlib[bcrypt]==1.7.4 + +# 文件上传(如果需要) +# python-multipart==0.0.6 \ No newline at end of file