.difyignore 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # Distribution / packaging
  6. .Python
  7. build/
  8. develop-eggs/
  9. dist/
  10. downloads/
  11. eggs/
  12. .eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. wheels/
  19. share/python-wheels/
  20. *.egg-info/
  21. .installed.cfg
  22. *.egg
  23. MANIFEST
  24. # PyInstaller
  25. # Usually these files are written by a python script from a template
  26. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  27. *.manifest
  28. *.spec
  29. # Installer logs
  30. pip-log.txt
  31. pip-delete-this-directory.txt
  32. # Unit test / coverage reports
  33. htmlcov/
  34. .tox/
  35. .nox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *.cover
  42. *.py,cover
  43. .hypothesis/
  44. .pytest_cache/
  45. cover/
  46. # Translations
  47. *.mo
  48. *.pot
  49. # Django stuff:
  50. *.log
  51. local_settings.py
  52. db.sqlite3
  53. db.sqlite3-journal
  54. # Flask stuff:
  55. instance/
  56. .webassets-cache
  57. # Scrapy stuff:
  58. .scrapy
  59. # Sphinx documentation
  60. docs/_build/
  61. # PyBuilder
  62. .pybuilder/
  63. target/
  64. # Jupyter Notebook
  65. .ipynb_checkpoints
  66. # IPython
  67. profile_default/
  68. ipython_config.py
  69. # pyenv
  70. # For a library or package, you might want to ignore these files since the code is
  71. # intended to run in multiple environments; otherwise, check them in:
  72. .python-version
  73. # pipenv
  74. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  75. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  76. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  77. # install all needed dependencies.
  78. Pipfile.lock
  79. # UV
  80. # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
  81. # This is especially recommended for binary packages to ensure reproducibility, and is more
  82. # commonly ignored for libraries.
  83. uv.lock
  84. # poetry
  85. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  86. # This is especially recommended for binary packages to ensure reproducibility, and is more
  87. # commonly ignored for libraries.
  88. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  89. poetry.lock
  90. # pdm
  91. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  92. #pdm.lock
  93. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  94. # in version control.
  95. # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
  96. .pdm.toml
  97. .pdm-python
  98. .pdm-build/
  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. # Git
  138. .git/
  139. .gitignore
  140. # Mac
  141. .DS_Store
  142. # Windows
  143. Thumbs.db