.gitignore 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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. .hypothesis/
  46. .pytest_cache/
  47. cover/
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. local_settings.py
  54. db.sqlite3
  55. db.sqlite3-journal
  56. # Flask stuff:
  57. instance/
  58. .webassets-cache
  59. # Scrapy stuff:
  60. .scrapy
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. .pybuilder/
  65. target/
  66. # Jupyter Notebook
  67. .ipynb_checkpoints
  68. # IPython
  69. profile_default/
  70. ipython_config.py
  71. # pyenv
  72. # For a library or package, you might want to ignore these files since the code is
  73. # intended to run in multiple environments; otherwise, check them in:
  74. # .python-version
  75. # pipenv
  76. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  77. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  78. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  79. # install all needed dependencies.
  80. #Pipfile.lock
  81. # UV
  82. # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
  83. # This is especially recommended for binary packages to ensure reproducibility, and is more
  84. # commonly ignored for libraries.
  85. #uv.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. #poetry.toml
  93. # pdm
  94. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  95. #pdm.lock
  96. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  97. # in version control.
  98. # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
  99. .pdm.toml
  100. .pdm-python
  101. .pdm-build/
  102. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  103. __pypackages__/
  104. # Celery stuff
  105. celerybeat-schedule
  106. celerybeat.pid
  107. # SageMath parsed files
  108. *.sage.py
  109. # Environments
  110. .env
  111. uv.lock
  112. .envrc
  113. .venv
  114. env/
  115. venv/
  116. ENV/
  117. env.bak/
  118. venv.bak/
  119. **/coder_venv/
  120. # Spyder project settings
  121. .spyderproject
  122. .spyproject
  123. # Rope project settings
  124. .ropeproject
  125. # mkdocs documentation
  126. /site
  127. # mypy
  128. .mypy_cache/
  129. .dmypy.json
  130. dmypy.json
  131. # Pyre type checker
  132. .pyre/
  133. # pytype static type analyzer
  134. .pytype/
  135. # Cython debug symbols
  136. cython_debug/
  137. # PyCharm
  138. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  139. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  140. # and can be added to the global gitignore or merged into this file. For a more nuclear
  141. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  142. .idea/
  143. .agentscope/
  144. # Abstra
  145. # Abstra is an AI-powered process automation framework.
  146. # Ignore directories containing user credentials, local state, and settings.
  147. # Learn more at https://abstra.io/docs
  148. .abstra/
  149. # Visual Studio Code
  150. # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
  151. # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
  152. # and can be added to the global gitignore or merged into this file. However, if you prefer,
  153. # you could uncomment the following to ignore the entire vscode folder
  154. # .vscode/
  155. # Ruff stuff:
  156. .ruff_cache/
  157. # PyPI configuration file
  158. .pypirc
  159. # Cursor
  160. # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
  161. # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
  162. # refer to https://docs.cursor.com/context/ignore-files
  163. .cursorignore
  164. .cursorindexingignore
  165. # Marimo
  166. marimo/_static/
  167. marimo/_lsp/
  168. __marimo__/
  169. storage/
  170. data/
  171. mysql_data/
  172. .DS_Store
  173. .build_version