# Git
.git
.gitignore
.gitattributes

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

# IDEs
.vscode/
.idea/
*.swp
*.swo
*.sublime-project
*.sublime-workspace

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

# OS
.DS_Store
Thumbs.db

# Project specific
.env
.env.local
*.log
*.pid
.mypy_cache/
.ruff_cache/

# Documentation
docs/_build/

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

# Development
docker-compose.override.yml
