# Virtual environments
.venv/
venv/

# Git
.git/
.gitignore

# Python cache
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so

# Testing
.pytest_cache/
tests/results/
.coverage

# IDE
.vscode/
.idea/

# Documentation
docs/

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

# OS
.DS_Store
Thumbs.db
