.gitignore 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[codz]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. share/python-wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .nox/
  38. .coverage
  39. .coverage.*
  40. .cache
  41. nosetests.xml
  42. coverage.xml
  43. *.cover
  44. *.py.cover
  45. *.lcov
  46. .hypothesis/
  47. .pytest_cache/
  48. cover/
  49. # Translations
  50. *.mo
  51. *.pot
  52. # Django stuff:
  53. *.log
  54. local_settings.py
  55. db.sqlite3
  56. db.sqlite3-journal
  57. # Flask stuff:
  58. instance/
  59. .webassets-cache
  60. # Scrapy stuff:
  61. .scrapy
  62. # Sphinx documentation
  63. docs/_build/
  64. # PyBuilder
  65. .pybuilder/
  66. target/
  67. # Jupyter Notebook
  68. .ipynb_checkpoints
  69. # IPython
  70. profile_default/
  71. ipython_config.py
  72. # pyenv
  73. # For a library or package, you might want to ignore these files since the code is
  74. # intended to run in multiple environments; otherwise, check them in:
  75. # .python-version
  76. # pipenv
  77. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  78. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  79. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  80. # install all needed dependencies.
  81. # Pipfile.lock
  82. # UV
  83. # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
  84. # This is especially recommended for binary packages to ensure reproducibility, and is more
  85. # commonly ignored for libraries.
  86. uv.lock
  87. # poetry
  88. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  89. # This is especially recommended for binary packages to ensure reproducibility, and is more
  90. # commonly ignored for libraries.
  91. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  92. # poetry.lock
  93. # poetry.toml
  94. # pdm
  95. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  96. # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
  97. # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
  98. # pdm.lock
  99. # pdm.toml
  100. .pdm-python
  101. .pdm-build/
  102. # pixi
  103. # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
  104. # pixi.lock
  105. # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
  106. # in the .venv directory. It is recommended not to include this directory in version control.
  107. .pixi/*
  108. !.pixi/config.toml
  109. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  110. __pypackages__/
  111. # Celery stuff
  112. celerybeat-schedule*
  113. celerybeat.pid
  114. # Redis
  115. *.rdb
  116. *.aof
  117. *.pid
  118. # RabbitMQ
  119. mnesia/
  120. rabbitmq/
  121. rabbitmq-data/
  122. # ActiveMQ
  123. activemq-data/
  124. # SageMath parsed files
  125. *.sage.py
  126. # Environments
  127. .env
  128. .envrc
  129. .venv
  130. env/
  131. venv/
  132. ENV/
  133. env.bak/
  134. venv.bak/
  135. # Spyder project settings
  136. .spyderproject
  137. .spyproject
  138. # Rope project settings
  139. .ropeproject
  140. # mkdocs documentation
  141. /site
  142. # mypy
  143. .mypy_cache/
  144. .dmypy.json
  145. dmypy.json
  146. # Pyre type checker
  147. .pyre/
  148. # pytype static type analyzer
  149. .pytype/
  150. # Cython debug symbols
  151. cython_debug/
  152. # PyCharm
  153. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  154. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  155. # and can be added to the global gitignore or merged into this file. For a more nuclear
  156. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  157. # .idea/
  158. # Abstra
  159. # Abstra is an AI-powered process automation framework.
  160. # Ignore directories containing user credentials, local state, and settings.
  161. # Learn more at https://abstra.io/docs
  162. .abstra/
  163. # Visual Studio Code
  164. # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
  165. # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
  166. # and can be added to the global gitignore or merged into this file. However, if you prefer,
  167. # you could uncomment the following to ignore the entire vscode folder
  168. # .vscode/
  169. # Temporary file for partial code execution
  170. tempCodeRunnerFile.py
  171. # Ruff stuff:
  172. .ruff_cache/
  173. # PyPI configuration file
  174. .pypirc
  175. # Marimo
  176. marimo/_static/
  177. marimo/_lsp/
  178. __marimo__/
  179. # Streamlit
  180. .streamlit/secrets.toml