.gitignore 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. # Created by https://www.toptal.com/developers/gitignore/api/python,windows,visualstudiocode,vim
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=python,windows,visualstudiocode,vim
  3. __*/*
  4. __*
  5. .*
  6. .*/*
  7. ### Python ###
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. *.py[cod]
  11. *$py.class
  12. # C extensions
  13. *.so
  14. # Distribution / packaging
  15. .Python
  16. build/
  17. develop-eggs/
  18. dist/
  19. downloads/
  20. eggs/
  21. .eggs/
  22. lib/
  23. lib64/
  24. parts/
  25. sdist/
  26. var/
  27. wheels/
  28. share/python-wheels/
  29. *.egg-info/
  30. .installed.cfg
  31. *.egg
  32. MANIFEST
  33. # PyInstaller
  34. # Usually these files are written by a python script from a template
  35. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  36. *.manifest
  37. *.spec
  38. # Installer logs
  39. pip-log.txt
  40. pip-delete-this-directory.txt
  41. # Unit test / coverage reports
  42. htmlcov/
  43. .tox/
  44. .nox/
  45. .coverage
  46. .coverage.*
  47. .cache
  48. nosetests.xml
  49. coverage.xml
  50. *.cover
  51. *.py,cover
  52. .hypothesis/
  53. .pytest_cache/
  54. cover/
  55. # Translations
  56. *.mo
  57. *.pot
  58. # Django stuff:
  59. *.log
  60. local_settings.py
  61. db.sqlite3
  62. db.sqlite3-journal
  63. # Flask stuff:
  64. instance/
  65. .webassets-cache
  66. # Scrapy stuff:
  67. .scrapy
  68. # Sphinx documentation
  69. docs/_build/
  70. # PyBuilder
  71. .pybuilder/
  72. target/
  73. # Jupyter Notebook
  74. .ipynb_checkpoints
  75. # IPython
  76. profile_default/
  77. ipython_config.py
  78. # pyenv
  79. # For a library or package, you might want to ignore these files since the code is
  80. # intended to run in multiple environments; otherwise, check them in:
  81. # .python-version
  82. # pipenv
  83. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  84. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  85. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  86. # install all needed dependencies.
  87. #Pipfile.lock
  88. # poetry
  89. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  90. # This is especially recommended for binary packages to ensure reproducibility, and is more
  91. # commonly ignored for libraries.
  92. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  93. #poetry.lock
  94. # pdm
  95. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  96. #pdm.lock
  97. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  98. # in version control.
  99. # https://pdm.fming.dev/#use-with-ide
  100. .pdm.toml
  101. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  102. __pypackages__/
  103. # Celery stuff
  104. celerybeat-schedule
  105. celerybeat.pid
  106. # SageMath parsed files
  107. *.sage.py
  108. # Environments
  109. .env
  110. .venv
  111. env/
  112. venv/
  113. ENV/
  114. env.bak/
  115. venv.bak/
  116. # Spyder project settings
  117. .spyderproject
  118. .spyproject
  119. # Rope project settings
  120. .ropeproject
  121. # mkdocs documentation
  122. /site
  123. # mypy
  124. .mypy_cache/
  125. .dmypy.json
  126. dmypy.json
  127. # Pyre type checker
  128. .pyre/
  129. # pytype static type analyzer
  130. .pytype/
  131. # Cython debug symbols
  132. cython_debug/
  133. # PyCharm
  134. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  135. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  136. # and can be added to the global gitignore or merged into this file. For a more nuclear
  137. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  138. #.idea/
  139. ### Python Patch ###
  140. # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
  141. poetry.toml
  142. # ruff
  143. .ruff_cache/
  144. # LSP config files
  145. pyrightconfig.json
  146. ### Vim ###
  147. # Swap
  148. [._]*.s[a-v][a-z]
  149. !*.svg # comment out if you don't need vector files
  150. [._]*.sw[a-p]
  151. [._]s[a-rt-v][a-z]
  152. [._]ss[a-gi-z]
  153. [._]sw[a-p]
  154. # Session
  155. Session.vim
  156. Sessionx.vim
  157. # Temporary
  158. .netrwhist
  159. *~
  160. # Auto-generated tag files
  161. tags
  162. # Persistent undo
  163. [._]*.un~
  164. ### VisualStudioCode ###
  165. .vscode/*
  166. !.vscode/settings.json
  167. !.vscode/tasks.json
  168. !.vscode/launch.json
  169. !.vscode/extensions.json
  170. !.vscode/*.code-snippets
  171. # Local History for Visual Studio Code
  172. .history/
  173. # Built Visual Studio Code Extensions
  174. *.vsix
  175. ### VisualStudioCode Patch ###
  176. # Ignore all local history of files
  177. .history
  178. .ionide
  179. ### Windows ###
  180. # Windows thumbnail cache files
  181. Thumbs.db
  182. Thumbs.db:encryptable
  183. ehthumbs.db
  184. ehthumbs_vista.db
  185. # Dump file
  186. *.stackdump
  187. # Folder config file
  188. [Dd]esktop.ini
  189. # Recycle Bin used on file shares
  190. $RECYCLE.BIN/
  191. # Windows Installer files
  192. *.cab
  193. *.msi
  194. *.msix
  195. *.msm
  196. *.msp
  197. # Windows shortcuts
  198. *.lnk
  199. # End of https://www.toptal.com/developers/gitignore/api/python,windows,visualstudiocode,vim