# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/

# Virtual environments
venv/
env/
ENV/
.venv

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

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.mypy_cache/
.ruff_cache/
tests/

# Git
.git/
.gitignore

# Documentation
docs/
*.md
!README.md

# Database
*.db
*.sqlite
*.sqlite3

# Configuration
config.yaml
.env

# Logs
*.log

# Cloned repositories
repos/

# Data directory
data/

# Build artifacts
dist/
build/
