Update .gitignore and add requirements.txt for Windows packaging dependencies

This commit is contained in:
Brunsmeier
2026-05-21 13:56:22 +08:00
parent cf8908fcc1
commit a4796d070a
2 changed files with 20 additions and 0 deletions

View File

@ -4,12 +4,18 @@ __pycache__/
*.class *.class
*.pyc *.pyc
*.cache *.cache
.pytest_cache/
# IDE 配置文件(可选,若不需要提交 IDE 配置) # IDE 配置文件(可选,若不需要提交 IDE 配置)
.idea/ .idea/
*.csv *.csv
# PyInstaller 打包产物
build/
dist/
# 运行时生成文件
ui_settings.json ui_settings.json
# VSCode 配置 # VSCode 配置

View File

@ -0,0 +1,14 @@
# TomatoPick runtime dependencies for Windows packaging.
# If you need CUDA acceleration, install a matching torch/torchvision/torchaudio
# build first, then run: pip install -r requirements.txt
# tkinter is not listed here because it is bundled with the standard Windows
# CPython installer.
Pillow==11.2.1
opencv-python==4.10.0.84
numpy==2.0.0
pyrealsense2==2.55.1.6486
pyaubo_agvc_sdk==0.2.0
pyaubo_sdk==0.24.1
ultralytics==8.3.112
pyinstaller>=6,<7