# Version control
.git/
.gitignore

# Python artifacts
__pycache__/
*.py[cod]
*.egg-info/
*.egg
.eggs/
dist/
build/
wheels/

# Virtual environments
.venv/
venv/
env/

# Test & coverage
tests/
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
junit.xml

# Dev tooling
.ruff_cache/
.mypy_cache/

# Docs
docs/
site/

# IDE / OS
.idea/
.vscode/
*.DS_Store

# Docker itself
Dockerfile
.dockerignore

# CI / devcontainer
.github/
.devcontainer/

# Misc
*.log
.env
examples/
scripts/
