.gitignore 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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. ### Windows template
  113. # Windows thumbnail cache files
  114. Thumbs.db
  115. Thumbs.db:encryptable
  116. ehthumbs.db
  117. ehthumbs_vista.db
  118. # Dump file
  119. *.stackdump
  120. # Folder config file
  121. [Dd]esktop.ini
  122. # Recycle Bin used on file shares
  123. $RECYCLE.BIN/
  124. # Windows Installer files
  125. *.cab
  126. *.msi
  127. *.msix
  128. *.msm
  129. *.msp
  130. # Windows shortcuts
  131. *.lnk
  132. ### macOS template
  133. # General
  134. .DS_Store
  135. .AppleDouble
  136. .LSOverride
  137. # Icon must end with two \r
  138. Icon
  139. # Thumbnails
  140. ._*
  141. # Files that might appear in the root of a volume
  142. .DocumentRevisions-V100
  143. .fseventsd
  144. .Spotlight-V100
  145. .TemporaryItems
  146. .Trashes
  147. .VolumeIcon.icns
  148. .com.apple.timemachine.donotpresent
  149. # Directories potentially created on remote AFP share
  150. .AppleDB
  151. .AppleDesktop
  152. Network Trash Folder
  153. Temporary Items
  154. .apdisk
  155. ### Python template
  156. # Byte-compiled / optimized / DLL files
  157. __pycache__/
  158. *.py[cod]
  159. *$py.class
  160. # C extensions
  161. *.so
  162. # Distribution / packaging
  163. .Python
  164. build/
  165. develop-eggs/
  166. dist/
  167. downloads/
  168. eggs/
  169. .eggs/
  170. lib/
  171. lib64/
  172. parts/
  173. sdist/
  174. var/
  175. wheels/
  176. share/python-wheels/
  177. *.egg-info/
  178. .installed.cfg
  179. *.egg
  180. MANIFEST
  181. # PyInstaller
  182. # Usually these files are written by a python script from a template
  183. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  184. *.manifest
  185. *.spec
  186. # Installer logs
  187. pip-log.txt
  188. pip-delete-this-directory.txt
  189. # Unit test / coverage reports
  190. htmlcov/
  191. .tox/
  192. .nox/
  193. .coverage
  194. .coverage.*
  195. .cache
  196. nosetests.xml
  197. coverage.xml
  198. *.cover
  199. *.py,cover
  200. .hypothesis/
  201. .pytest_cache/
  202. cover/
  203. # Translations
  204. *.mo
  205. *.pot
  206. # Django stuff:
  207. *.log
  208. local_settings.py
  209. db.sqlite3
  210. db.sqlite3-journal
  211. # Flask stuff:
  212. instance/
  213. .webassets-cache
  214. # Scrapy stuff:
  215. .scrapy
  216. # Sphinx documentation
  217. docs/_build/
  218. # PyBuilder
  219. .pybuilder/
  220. target/
  221. # Jupyter Notebook
  222. .ipynb_checkpoints
  223. # IPython
  224. profile_default/
  225. ipython_config.py
  226. # pyenv
  227. # For a library or package, you might want to ignore these files since the code is
  228. # intended to run in multiple environments; otherwise, check them in:
  229. # .python-version
  230. # pipenv
  231. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  232. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  233. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  234. # install all needed dependencies.
  235. #Pipfile.lock
  236. # poetry
  237. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  238. # This is especially recommended for binary packages to ensure reproducibility, and is more
  239. # commonly ignored for libraries.
  240. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  241. #poetry.lock
  242. # pdm
  243. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  244. #pdm.lock
  245. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  246. # in version control.
  247. # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
  248. .pdm.toml
  249. .pdm-python
  250. .pdm-build/
  251. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  252. __pypackages__/
  253. # Celery stuff
  254. celerybeat-schedule
  255. celerybeat.pid
  256. # SageMath parsed files
  257. *.sage.py
  258. # Environments
  259. .env
  260. .venv
  261. env/
  262. venv/
  263. ENV/
  264. env.bak/
  265. venv.bak/
  266. # Spyder project settings
  267. .spyderproject
  268. .spyproject
  269. # Rope project settings
  270. .ropeproject
  271. # mkdocs documentation
  272. /site
  273. # mypy
  274. .mypy_cache/
  275. .dmypy.json
  276. dmypy.json
  277. # Pyre type checker
  278. .pyre/
  279. # pytype static type analyzer
  280. .pytype/
  281. # Cython debug symbols
  282. cython_debug/
  283. # PyCharm
  284. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  285. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  286. # and can be added to the global gitignore or merged into this file. For a more nuclear
  287. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  288. #.idea/