# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
*.egg

# 仮想環境
.venv/
venv/
env/
.venv-win/

# 環境変数ファイル (機密情報を含むため)
.env

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

# テスト・カバレッジ
.pytest_cache/
htmlcov/
.coverage
coverage.xml

# OS
.DS_Store
Thumbs.db

# ログ
*.log
*.log*
logs/

# バイナリ・ライブラリ
libs/
*.dll
*.exe
