| 123456789101112131415161718192021222324252627282930313233343536 |
- # Python
- __pycache__/
- *.py[cod]
- .pytest_cache/
- .mypy_cache/
- .ruff_cache/
- # Virtual environment
- .venv/
- venv/
- # Environment secrets
- .env
- .env.local
- .env.*.local
- # IDE
- .idea/
- .vscode/
- # macOS
- .DS_Store
- # Logs
- *.log
- logs/
- # Coverage
- .coverage
- htmlcov/
- coverage.xml
- # Build
- build/
- dist/
- *.egg-info/
|