###### 專案特定檔案 PETsARD-specific files ######

# 基準測試資料集 Benchmark datasets
**/benchmark/

# 執行結果 Execution results
**/*.csv
**/*.log
# 第三方執行結果：SDV Third-party execution results: SDV
**/.sample.csv.temp*

# 開發目錄 Development directories
**/dev/

# 輪子檔案目錄 Wheel files directories
**/wheels/
*.whl

# Hugo本地測試 Hugo local test
/doc_site/public/*
/doc_site/.hugo_build.lock

###### Python 相關 Python related ######

# 位元組編譯檔案 Byte-compiled files
**/__pycache__/
**/*.py[cod]
**/*$py.class

# 發布與分發 Distribution and packaging
dist/

# 環境與虛擬環境 Environment and virtual environments
**/*{env,venv}
**/.python-version

# 套件管理 Package management
## Poetry
**/poetry.lock
## uv
**/uv.lock

# 測試相關 Testing related
.pytest_cache/
.coverage*
htmlcov/
coverage.xml
*.cover
.hypothesis/

# 快取與暫存檔案 Cache and temporary files
.ruff_cache/

# 安全性相關 Security related
.env
.env.*
!.env.example
*.key
*.pem
secrets.yaml

# AI 與開發工具 AI and development tools
.roo/cache/

# Docker 相關 Docker related
.dockerignore
docker-compose.override.yml

# 文件生成 Documentation generation
doc_site/resources/
doc_site/.hugo_build.lock

###### Jupyter 相關 Jupyter related ######
# Jupyter檔案 Jupyter files
**/.ipynb_checkpoints
**/*.ipynb*.tmp

###### 作業系統相關 OS related ######

# macOS
**/.DS_Store

# Windows
Thumbs.db
Desktop.ini
$RECYCLE.BIN/

###### IDE 與編輯器相關 IDE and editors related ######

# VSCode
**/.vscode
**/*.code-workspace
