.gitignore 3.7 KB

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