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

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/

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

# Git
.git/
.gitignore

# Documentation
*.md
!README.md
docs/

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Environment
.env
.env.*

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

# Development
.mypy_cache/
.dmypy.json
dmypy.json
.ruff_cache/

# Logs
*.log

# Examples and tests
examples/
tests/
test_*.py
*_test.py