.gitignore 4.4 KB

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