.gitignore 196 B

12345678910111213141516171819202122232425262728
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *.so
  5. *.egg-info/
  6. dist/
  7. build/
  8. *.spec
  9. # Output
  10. output/
  11. *.db
  12. *.sqlite3
  13. *.log
  14. # Environment
  15. .env
  16. .venv/
  17. venv/
  18. # IDE
  19. .vscode/
  20. .idea/
  21. *.swp
  22. # OS
  23. .DS_Store
  24. Thumbs.db