.gitignore 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. .venv/
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  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. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *,cover
  43. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. # Sphinx documentation
  49. docs/_build/
  50. # PyBuilder
  51. target/
  52. # ---> Emacs
  53. # -*- mode: gitignore; -*-
  54. *~
  55. \#*\#
  56. /.emacs.desktop
  57. /.emacs.desktop.lock
  58. *.elc
  59. auto-save-list
  60. tramp
  61. .\#*
  62. # Org-mode
  63. .org-id-locations
  64. *_archive
  65. # flymake-mode
  66. *_flymake.*
  67. # eshell files
  68. /eshell/history
  69. /eshell/lastdir
  70. # elpa packages
  71. /elpa/
  72. # reftex files
  73. *.rel
  74. # AUCTeX auto folder
  75. /auto/
  76. # cask packages
  77. .cask/