.gitignore 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  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. ### JetBrains template
  52. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  53. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  54. # User-specific stuff
  55. .idea/**/workspace.xml
  56. .idea/**/tasks.xml
  57. .idea/**/usage.statistics.xml
  58. .idea/**/dictionaries
  59. .idea/**/shelf
  60. # AWS User-specific
  61. .idea/**/aws.xml
  62. # Generated files
  63. .idea/**/contentModel.xml
  64. # Sensitive or high-churn files
  65. .idea/**/dataSources/
  66. .idea/**/dataSources.ids
  67. .idea/**/dataSources.local.xml
  68. .idea/**/sqlDataSources.xml
  69. .idea/**/dynamic.xml
  70. .idea/**/uiDesigner.xml
  71. .idea/**/dbnavigator.xml
  72. # Gradle
  73. .idea/**/gradle.xml
  74. .idea/**/libraries
  75. # Gradle and Maven with auto-import
  76. # When using Gradle or Maven with auto-import, you should exclude module files,
  77. # since they will be recreated, and may cause churn. Uncomment if using
  78. # auto-import.
  79. # .idea/artifacts
  80. # .idea/compiler.xml
  81. # .idea/jarRepositories.xml
  82. # .idea/modules.xml
  83. # .idea/*.iml
  84. # .idea/modules
  85. # *.iml
  86. # *.ipr
  87. # CMake
  88. cmake-build-*/
  89. # Mongo Explorer plugin
  90. .idea/**/mongoSettings.xml
  91. # File-based project format
  92. *.iws
  93. # IntelliJ
  94. out/
  95. # mpeltonen/sbt-idea plugin
  96. .idea_modules/
  97. # JIRA plugin
  98. atlassian-ide-plugin.xml
  99. # Cursive Clojure plugin
  100. .idea/replstate.xml
  101. # SonarLint plugin
  102. .idea/sonarlint/
  103. # Crashlytics plugin (for Android Studio and IntelliJ)
  104. com_crashlytics_export_strings.xml
  105. crashlytics.properties
  106. crashlytics-build.properties
  107. fabric.properties
  108. # Editor-based Rest Client
  109. .idea/httpRequests
  110. # Android studio 3.1+ serialized cache file
  111. .idea/caches/build_file_checksums.ser
  112. ### Python template
  113. # Byte-compiled / optimized / DLL files
  114. __pycache__/
  115. *.py[cod]
  116. *$py.class
  117. # C extensions
  118. *.so
  119. # Distribution / packaging
  120. .Python
  121. build/
  122. develop-eggs/
  123. dist/
  124. downloads/
  125. eggs/
  126. .eggs/
  127. lib/
  128. lib64/
  129. parts/
  130. sdist/
  131. var/
  132. wheels/
  133. share/python-wheels/
  134. *.egg-info/
  135. .installed.cfg
  136. *.egg
  137. MANIFEST
  138. # PyInstaller
  139. # Usually these files are written by a python script from a template
  140. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  141. *.manifest
  142. *.spec
  143. # Installer logs
  144. pip-log.txt
  145. pip-delete-this-directory.txt
  146. # Unit test / coverage reports
  147. htmlcov/
  148. .tox/
  149. .nox/
  150. .coverage
  151. .coverage.*
  152. .cache
  153. nosetests.xml
  154. coverage.xml
  155. *.cover
  156. *.py,cover
  157. .hypothesis/
  158. .pytest_cache/
  159. cover/
  160. # Translations
  161. *.mo
  162. *.pot
  163. # Django stuff:
  164. *.log
  165. local_settings.py
  166. db.sqlite3
  167. db.sqlite3-journal
  168. # Flask stuff:
  169. instance/
  170. .webassets-cache
  171. # Scrapy stuff:
  172. .scrapy
  173. # Sphinx documentation
  174. docs/_build/
  175. # PyBuilder
  176. .pybuilder/
  177. target/
  178. # Jupyter Notebook
  179. .ipynb_checkpoints
  180. # IPython
  181. profile_default/
  182. ipython_config.py
  183. # pyenv
  184. # For a library or package, you might want to ignore these files since the code is
  185. # intended to run in multiple environments; otherwise, check them in:
  186. # .python-version
  187. # pipenv
  188. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  189. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  190. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  191. # install all needed dependencies.
  192. #Pipfile.lock
  193. # poetry
  194. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  195. # This is especially recommended for binary packages to ensure reproducibility, and is more
  196. # commonly ignored for libraries.
  197. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  198. #poetry.lock
  199. # pdm
  200. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  201. #pdm.lock
  202. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  203. # in version control.
  204. # https://pdm.fming.dev/#use-with-ide
  205. .pdm.toml
  206. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  207. __pypackages__/
  208. # Celery stuff
  209. celerybeat-schedule
  210. celerybeat.pid
  211. # SageMath parsed files
  212. *.sage.py
  213. # Environments
  214. .env
  215. .venv
  216. env/
  217. venv/
  218. ENV/
  219. env.bak/
  220. venv.bak/
  221. # Spyder project settings
  222. .spyderproject
  223. .spyproject
  224. # Rope project settings
  225. .ropeproject
  226. # mkdocs documentation
  227. /site
  228. # mypy
  229. .mypy_cache/
  230. .dmypy.json
  231. dmypy.json
  232. # Pyre type checker
  233. .pyre/
  234. # pytype static type analyzer
  235. .pytype/
  236. # Cython debug symbols
  237. cython_debug/
  238. # PyCharm
  239. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  240. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  241. # and can be added to the global gitignore or merged into this file. For a more nuclear
  242. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  243. #.idea/