.gitignore 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. # Python specific
  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. MANIFEST
  23. # Emacs specific
  24. *~
  25. \#*\#
  26. /.emacs.desktop
  27. /.emacs.desktop.lock
  28. *.elc
  29. auto-save-list
  30. tramp
  31. .\#*
  32. .org-id-locations
  33. *_archive
  34. *_flymake.*
  35. /eshell/history
  36. /eshell/lastdir
  37. /elpa/
  38. *.rel
  39. /auto/
  40. .cask/
  41. flycheck_*.el
  42. /server/
  43. .projectile
  44. .dir-locals.el
  45. /network-security.data
  46. # Distribution / packaging
  47. .Python
  48. env/
  49. build/
  50. develop-eggs/
  51. dist/
  52. downloads/
  53. eggs/
  54. .eggs/
  55. lib/
  56. lib64/
  57. parts/
  58. sdist/
  59. var/
  60. wheels/
  61. *.egg-info/
  62. .installed.cfg
  63. *.egg
  64. # Unit test / coverage reports
  65. htmlcov/
  66. .tox/
  67. .coverage
  68. .coverage.*
  69. .cache
  70. nosetests.xml
  71. coverage.xml
  72. *.cover
  73. .hypothesis/
  74. .pytest_cache/
  75. # Slackware specific
  76. *.txz
  77. *.tgz
  78. *.tar.gz
  79. *.tar.xz
  80. /tmp/
  81. /tmp-*
  82. /pkg/
  83. /work/
  84. # Logs
  85. *.log
  86. logs/
  87. log/
  88. # Environment
  89. .env
  90. .venv
  91. env/
  92. venv/
  93. ENV/
  94. env.bak/
  95. venv.bak/
  96. # OS specific
  97. .DS_Store
  98. .DS_Store?
  99. ._*
  100. .Spotlight-V100
  101. .Trashes
  102. ehthumbs.db
  103. Thumbs.db
  104. # Custom for this project
  105. /test_root/
  106. /test_snapshots/