# Python virtual environments
env/
venv/
.venv
.envrc
env3*/

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

# Python compiled files
*.py[cod]
*.pyo
*.pyd
__pycache__/
*.so

# Python package management
Pipfile
Pipfile.lock
poetry.lock
# Keep uv.lock for reproducibility
# uv.lock should be committed

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

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/

# Caching
.cache/
/.ruff_cache/
.mypy_cache/
.pytype/
.dmypy.json
dmypy.json

# Documentation
/site/
/site.zip
_build/

# IDE and editors
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Project specific
/sandbox/
/worktrees/
.auto-format
*.db
*.db-shm
*.db-wal
*.sqlite
*.sqlite3
