.gitignore 572 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. build/
  8. develop-eggs/
  9. dist/
  10. downloads/
  11. eggs/
  12. .eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. wheels/
  19. *.egg-info/
  20. .installed.cfg
  21. *.egg
  22. MANIFEST
  23. # Virtual Environment
  24. .venv/
  25. env/
  26. venv/
  27. ENV/
  28. # IDE
  29. .vscode/
  30. .idea/
  31. *.swp
  32. *.swo
  33. *~
  34. .DS_Store
  35. .history/
  36. # Testing
  37. .pytest_cache/
  38. .coverage
  39. *.cover
  40. .hypothesis/
  41. # Logs
  42. *.log
  43. logs/
  44. # Data files
  45. *.csv
  46. *.zip
  47. *.jsonl
  48. *.db
  49. *.pyc
  50. *.png
  51. *.jpg
  52. *.pdf
  53. *.gz
  54. # Environments
  55. .env
  56. .env.local
  57. .env.*.local
  58. # mypy
  59. .mypy_cache/
  60. # Backup
  61. backups/
  62. *.bak
  63. *.tmp
  64. # Wiki (separate repo)
  65. .github/wiki/