- 添加 PyInstaller 打包脚本 build_exe.py - 更新 requirements.txt 添加 PyQt6 和 opencv-python - .gitignore 添加 PyInstaller 打包产物忽略规则 使用方法: pip install pyinstaller python build_exe.py Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
63 lines
1.2 KiB
Plaintext
63 lines
1.2 KiB
Plaintext
# ==================================================
|
|
# 数据文件
|
|
# ==================================================
|
|
data/input/*
|
|
!data/input/.gitkeep
|
|
data/output/*
|
|
!data/output/.gitkeep
|
|
|
|
# ==================================================
|
|
# Python
|
|
# ==================================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.DS_Store
|
|
.venv/
|
|
venv/
|
|
.env
|
|
|
|
# ==================================================
|
|
# Android - 构建产物
|
|
# ==================================================
|
|
android-app/app/build/
|
|
android-app/build/
|
|
android-app/.gradle/
|
|
android-app/.idea/
|
|
android-app/local.properties
|
|
android-app/captures/
|
|
android-app/*.apk
|
|
android-app/*.aab
|
|
android-app/*.ap_
|
|
android-app/output/
|
|
android-app/.externalNativeBuild
|
|
android-app/.cxx
|
|
|
|
# Gradle
|
|
android-app/gradle-app.setting
|
|
android-app/.navigation/
|
|
android-app/*/build/
|
|
|
|
# Keystore files
|
|
android-app/*.jks
|
|
android-app/*.keystore
|
|
|
|
# Debug
|
|
android-app/**/kotlin/
|
|
android-app/**/tmp/
|
|
android-app/**/.kotlin/
|
|
|
|
# ==================================================
|
|
# PyInstaller 打包产物
|
|
# ==================================================
|
|
*.spec
|
|
build/
|
|
dist/
|
|
*.exe
|
|
*.db
|