.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # -----------------------------------
  2. # Python
  3. # -----------------------------------
  4. __pycache__/
  5. *.py[cod]
  6. *.egg-info/
  7. *.egg
  8. *.pyo
  9. *.pyd
  10. *.pdb
  11. # Virtual environment
  12. venv/
  13. env/
  14. .venv/
  15. # Jupyter / Notebook
  16. .ipynb_checkpoints/
  17. # Byte-compiled
  18. *.so
  19. # -----------------------------------
  20. # DeepFace / OpenCV / Temp Files
  21. # -----------------------------------
  22. temp_upload.jpg
  23. temp/
  24. output/
  25. *.log
  26. *.cache
  27. cache/
  28. models/
  29. weights/
  30. # -----------------------------------
  31. # gRPC generated files
  32. # -----------------------------------
  33. face_recognition_pb2.py
  34. face_recognition_pb2_grpc.py
  35. # (Optional) If you want to commit proto only
  36. # !face_recognition.proto
  37. # -----------------------------------
  38. # OS specific
  39. # -----------------------------------
  40. .DS_Store
  41. Thumbs.db
  42. # -----------------------------------
  43. # IDE
  44. # -----------------------------------
  45. .vscode/
  46. .idea/
  47. # -----------------------------------
  48. # Deployment / Build artifacts
  49. # -----------------------------------
  50. data/
  51. dist/
  52. build/
  53. *.spec
  54. # -----------------------------------
  55. # Python backups
  56. # -----------------------------------
  57. *.bak
  58. *.tmp
  59. *~