.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *,cover
  42. # Translations
  43. *.mo
  44. *.pot
  45. # Django stuff:
  46. *.log
  47. # Sphinx documentation
  48. docs/_build/
  49. # PyBuilder
  50. target/
  51. # ---> Emacs
  52. # -*- mode: gitignore; -*-
  53. *~
  54. \#*\#
  55. /.emacs.desktop
  56. /.emacs.desktop.lock
  57. *.elc
  58. auto-save-list
  59. tramp
  60. .\#*
  61. # Org-mode
  62. .org-id-locations
  63. *_archive
  64. # flymake-mode
  65. *_flymake.*
  66. # eshell files
  67. /eshell/history
  68. /eshell/lastdir
  69. # elpa packages
  70. /elpa/
  71. # reftex files
  72. *.rel
  73. # AUCTeX auto folder
  74. /auto/
  75. # cask packages
  76. .cask/
  77. # ---> Qt
  78. # C++ objects and libs
  79. *.slo
  80. *.lo
  81. *.o
  82. *.a
  83. *.la
  84. *.lai
  85. *.so
  86. *.dll
  87. *.dylib
  88. # Qt-es
  89. /.qmake.cache
  90. /.qmake.stash
  91. *.pro.user
  92. *.pro.user.*
  93. *.qbs.user
  94. *.qbs.user.*
  95. *.moc
  96. moc_*.cpp
  97. qrc_*.cpp
  98. ui_*.h
  99. Makefile*
  100. *-build-*
  101. # QtCreator
  102. *.autosave
  103. #QtCtreator Qml
  104. *.qmlproject.user
  105. *.qmlproject.user.*
  106. # virtual env
  107. .venv/