.gitignore 203 B

12345678910111213141516171819202122232425
  1. # Project
  2. .idea/
  3. .vscode/
  4. .venv/
  5. .tests/
  6. .env
  7. venv/
  8. # Cache
  9. __pycache__/
  10. *.py[cod]
  11. .cache/
  12. .ruff_cache/
  13. .mypy_cache/
  14. .pytest_cache/
  15. .coverage/
  16. # Build
  17. env/
  18. build/
  19. _build/
  20. dist/
  21. site/
  22. *.egg-info/
  23. *.egg