.gitignore 695 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. share/python-wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. # We keep the spec file in version control as it contains custom build config
  31. # *.spec
  32. # Installer output (Inno Setup)
  33. installer_output/
  34. # Virtual Environments
  35. venv/
  36. env/
  37. ENV/
  38. env.bak/
  39. venv.bak/
  40. # IDE & Editor
  41. .vscode/
  42. .idea/
  43. *.swp
  44. *.swo
  45. # OS
  46. .DS_Store
  47. Thumbs.db