198 lines
2.6 KiB
Plaintext
198 lines
2.6 KiB
Plaintext
# Byte-compiled / optimized / DLL files
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
|
||
# C extensions
|
||
*.so
|
||
|
||
# Distribution / packaging
|
||
.Python
|
||
build/
|
||
develop-eggs/
|
||
dist/
|
||
downloads/
|
||
eggs/
|
||
.eggs/
|
||
lib/
|
||
lib64/
|
||
parts/
|
||
sdist/
|
||
var/
|
||
wheels/
|
||
*.egg-info/
|
||
.installed.cfg
|
||
*.egg
|
||
MANIFEST
|
||
|
||
# PyInstaller
|
||
# Usually these files are written by a python script from a template
|
||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||
*.manifest
|
||
*.spec
|
||
|
||
# Installer logs
|
||
pip-log.txt
|
||
pip-delete-this-directory.txt
|
||
|
||
# Unit test / coverage reports
|
||
htmlcov/
|
||
.tox/
|
||
.nox/
|
||
.coverage
|
||
.coverage.*
|
||
.cache
|
||
nosetests.xml
|
||
coverage.xml
|
||
*.cover
|
||
.hypothesis/
|
||
.pytest_cache/
|
||
|
||
# Translations
|
||
*.mo
|
||
*.pot
|
||
|
||
# Django stuff:
|
||
*.log
|
||
local_settings.py
|
||
db.sqlite3
|
||
|
||
# Flask stuff:
|
||
instance/
|
||
.webassets-cache
|
||
|
||
# Scrapy stuff:
|
||
.scrapy
|
||
|
||
# Sphinx documentation
|
||
docs/_build/
|
||
|
||
# PyBuilder
|
||
target/
|
||
|
||
# Jupyter Notebook
|
||
.ipynb_checkpoints
|
||
|
||
# IPython
|
||
profile_default/
|
||
ipython_config.py
|
||
|
||
# pyenv
|
||
.python-version
|
||
|
||
# celery beat schedule file
|
||
celerybeat-schedule
|
||
|
||
# SageMath parsed files
|
||
*.sage.py
|
||
|
||
# Environments
|
||
.env
|
||
.venv
|
||
env/
|
||
venv/
|
||
ENV/
|
||
env.bak/
|
||
venv.bak/
|
||
|
||
# Spyder project settings
|
||
.spyderproject
|
||
.spyproject
|
||
|
||
# Rope project settings
|
||
.ropeproject
|
||
|
||
# mkdocs documentation
|
||
/site
|
||
|
||
# mypy
|
||
.mypy_cache/
|
||
.dmypy.json
|
||
dmypy.json
|
||
|
||
# IDEs
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
|
||
# OS generated files
|
||
.DS_Store
|
||
.DS_Store?
|
||
._*
|
||
.Spotlight-V100
|
||
.Trashes
|
||
ehthumbs.db
|
||
Thumbs.db
|
||
|
||
# Project specific
|
||
# Build directories
|
||
V1/
|
||
V2/
|
||
dist/
|
||
build/
|
||
|
||
# Data files (keep structure but ignore large files)
|
||
data/input/*
|
||
data/output/*
|
||
data/models/*
|
||
!data/input/.gitkeep
|
||
!data/output/.gitkeep
|
||
!data/models/.gitkeep
|
||
|
||
# Log files
|
||
*.log
|
||
logs/
|
||
|
||
# Temporary files
|
||
*.tmp
|
||
*.temp
|
||
temp/
|
||
tmp/
|
||
|
||
# Backup files
|
||
*.bak
|
||
*.backup
|
||
*~
|
||
|
||
# ============================================================
|
||
# 不应进入版本控制的文件类型
|
||
# ============================================================
|
||
|
||
# Qwen Code 用户配置(个人环境,每次 clone 都不同)
|
||
.qwen/settings.json
|
||
.qwen/settings.json.orig
|
||
|
||
# Qwen Code 自动生成的 skill 文件(每次会话重新生成)
|
||
.qwen/skills/
|
||
|
||
# GUI 运行时生成的文件
|
||
src/gui/scaler_params.pkl
|
||
src/gui/crash_dump.txt
|
||
|
||
# 临时/调试脚本(根目录)
|
||
降采样光谱.py
|
||
1.py
|
||
tset.py
|
||
|
||
# 报告与文档(本地工作产物)
|
||
封装问题分析报告.md
|
||
软件说明.md
|
||
软件说明2.md
|
||
|
||
# 数据子目录中非 .gitkeep 的生成文件
|
||
data/sub/waterindex*.csv
|
||
data/sub/waterindex*.xlsx
|
||
data/sub/png/watermask.png
|
||
|
||
# 图标文件(仅需保留 vector/svg,删除像素图标压缩包副本)
|
||
data/icons-1/
|
||
data/icons/
|
||
|
||
# 旧版脚手架(遗留实验代码)
|
||
new/
|
||
|
||
# 前端脚手架(未集成的独立 Vue 项目)
|
||
frontend/
|