.gitignore 300 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. .pytest_cache/
  5. .mypy_cache/
  6. .ruff_cache/
  7. # Virtual environment
  8. .venv/
  9. venv/
  10. # Environment secrets
  11. .env
  12. .env.local
  13. .env.*.local
  14. # IDE
  15. .idea/
  16. .vscode/
  17. # macOS
  18. .DS_Store
  19. # Logs
  20. *.log
  21. logs/
  22. # Coverage
  23. .coverage
  24. htmlcov/
  25. coverage.xml
  26. # Build
  27. build/
  28. dist/
  29. *.egg-info/