# Python bytecode and caches
__pycache__/
*.py[cod]
*.pyo
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.nox/

# Virtual environments
.venv/
venv/
env/
ENV/

# Build artifacts
build/
dist/
*.egg-info/

# Local secrets and environment files
.env
.env.*
!.env.example

# IDE and OS files
.idea/
.vscode/
.DS_Store
Thumbs.db

# Logs
*.log
