.gitignore 223 B

1234567891011121314151617181920212223242526272829303132
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. *.egg-info/
  8. dist/
  9. build/
  10. # Odoo
  11. *.pyc
  12. *.pyo
  13. *.pyd
  14. .Python
  15. *.log
  16. # IDE
  17. .vscode/
  18. .idea/
  19. *.swp
  20. *.swo
  21. *~
  22. # OS
  23. .DS_Store
  24. Thumbs.db
  25. # Temporary files
  26. *.tmp
  27. *.bak
  28. *.orig