# Virtual environments
.venv/
venv/
env/

# Python bytecode and caches
__pycache__/
*.pyc
*.pyo
.pytest_cache/
.mypy_cache/
.ruff_cache/

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

# Packaging
.eggs/

# Editor / OS
.vscode/
.idea/
.DS_Store

# Environment files
.env
.env.*
!.env.example
