.gitignore 4.4 KB

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