.gitignore 228 B

1234567891011121314151617181920212223
  1. .venv/
  2. __pycache__/
  3. *.py[cod]
  4. *.pyo
  5. *.pyd
  6. .pytest_cache/
  7. .mypy_cache/
  8. .ruff_cache/
  9. .coverage
  10. .coverage.*
  11. htmlcov/
  12. .pytest_cache/
  13. .mypy_cache/
  14. .ruff_cache/
  15. *.egg-info/
  16. dist/
  17. build/
  18. .env
  19. .env.*
  20. .idea/
  21. .vscode/
  22. .DS_Store
  23. Thumbs.db