# ディレクトリパス: .gitignore
# ファイル名: .gitignore
# 内容: sara-engine-project用のGit除外設定ファイル

# ============================================
# Python compiled files
# ============================================
__pycache__/
*.py[cod]
*$py.class

# ============================================
# Distribution / Packaging
# ============================================
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# ============================================
# Rust関連
# ============================================
sara_rust_core/target/
target/
Cargo.lock

# コンパイル済み共有ライブラリ
*.so
*.dylib

# ============================================
# Virtual Environments
# ============================================
venv/
env/
.env/
.venv/
ENV/

# ============================================
# Unit Test / Coverage / Type Check / Lint
# ============================================
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
.mypy_cache/
.ruff_cache/

# ============================================
# Jupyter Notebook
# ============================================
.ipynb_checkpoints

# ============================================
# IDE / Editor
# ============================================
.vscode/
.idea/
*.swp
*.swo
*~

# ============================================
# OS generated files
# ============================================
.DS_Store
Thumbs.db

# ============================================
# Gemini AI
# ============================================
.gemini/

# ============================================
# Project Specific
# ============================================

# データセット
examples/data/

# data area
data/*.gz
data/*.csv
data/*.db

# 学習済みモデル
*.pkl
*.msgpack

# Logs
*.log

# 作業領域
workspace/

# 整理・分類された古いファイル群
scripts/old/
data/old/
examples/old/
tests/old/