.gitignore 4.3 KB

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