.gitignore 1.3 KB

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