.gitignore 426 B

123456789101112131415161718192021222324252627282930
  1. # Python bytecode
  2. __pycache__/
  3. *.pyc
  4. *.pyo
  5. *.pyd
  6. # Distribution / build outputs
  7. build/
  8. dist/
  9. *.egg-info/
  10. .eggs/
  11. # IDE-specific files (e.g., VS Code)
  12. .vscode/
  13. # Environment variables
  14. .env
  15. venv/
  16. env/
  17. # Logs and temporary files
  18. logs/
  19. *.log
  20. tmp/
  21. # Instance specific data (if it's not meant to be committed)
  22. instance/
  23. # PyInstaller / cx_Freeze / other packaging tools
  24. *.spec # This will ignore run.spec as seen in your image