.gitignore 345 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. # Testing
  23. .pytest_cache/
  24. .coverage
  25. htmlcov/
  26. .tox/
  27. .nox/
  28. # IDE
  29. .vscode/
  30. .idea/
  31. *.swp
  32. *.swo
  33. *~
  34. # Project specific
  35. todos.json
  36. *.json.backup
  37. # OS
  38. .DS_Store
  39. Thumbs.db