# Git
.git/
.gitignore
.gitattributes

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

# Virtual Environment
venv/
env/
ENV/
.venv/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Environment variables
.env
.env.local
.env.*

# Data directory
data/

# Testing
.pytest_cache/
.coverage
htmlcov/
*.cover
.hypothesis/
tests/

# Logs
*.log
logs/

# Documentation
*.md
docs/
specs/

# CI/CD
.github/
.gitlab-ci.yml

# OS
Thumbs.db

# Docker
Dockerfile*
.dockerignore
docker-compose*.yml
