.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. # C extensions
  5. *.so
  6. # Distribution / packaging
  7. .Python
  8. env/
  9. build/
  10. develop-eggs/
  11. dist/
  12. eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. *.egg-info/
  19. .installed.cfg
  20. *.egg
  21. # PyInstaller
  22. # Usually these files are written by a python script from a template
  23. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  24. *.manifest
  25. *.spec
  26. # Installer logs
  27. pip-log.txt
  28. pip-delete-this-directory.txt
  29. # Unit test / coverage reports
  30. htmlcov/
  31. .tox/
  32. .coverage
  33. .cache
  34. nosetests.xml
  35. coverage.xml
  36. # Translations
  37. *.mo
  38. *.pot
  39. # Django stuff:
  40. *.log
  41. # Sphinx documentation
  42. docs/_build/
  43. # PyBuilder
  44. target/
  45. # =========================
  46. # Operating System Files
  47. # =========================
  48. # OSX
  49. # =========================
  50. .DS_Store
  51. .AppleDouble
  52. .LSOverride
  53. # Icon must end with two \r
  54. Icon
  55. # Thumbnails
  56. ._*
  57. # Files that might appear on external disk
  58. .Spotlight-V100
  59. .Trashes
  60. # Directories potentially created on remote AFP share
  61. .AppleDB
  62. .AppleDesktop
  63. Network Trash Folder
  64. Temporary Items
  65. .apdisk
  66. # Windows
  67. # =========================
  68. # Windows image file caches
  69. Thumbs.db
  70. ehthumbs.db
  71. # Folder config file
  72. Desktop.ini
  73. # Recycle Bin used on file shares
  74. $RECYCLE.BIN/
  75. # Windows Installer files
  76. *.cab
  77. *.msi
  78. *.msm
  79. *.msp