.gitignore 148 B

123456789101112131415
  1. .venv/
  2. __pycache__/
  3. *.py[cod]
  4. *.egg-info/
  5. .pytest_cache/
  6. .mypy_cache/
  7. .ruff_cache/
  8. .coverage
  9. htmlcov/
  10. dist/
  11. build/
  12. .env
  13. .env.*
  14. !.env.example
  15. tests/