|
1 | | -.difyignore |
2 | | -# Other ignored files |
3 | | -pyproject.toml |
| 1 | +# Byte-compiled / optimized / DLL files |
| 2 | +__pycache__/ |
| 3 | +*.py[cod] |
| 4 | +*$py.class |
| 5 | + |
| 6 | +# Distribution / packaging |
| 7 | +.Python |
| 8 | +build/ |
| 9 | +develop-eggs/ |
| 10 | +dist/ |
| 11 | +downloads/ |
| 12 | +eggs/ |
| 13 | +.eggs/ |
| 14 | +lib/ |
| 15 | +lib64/ |
| 16 | +parts/ |
| 17 | +sdist/ |
| 18 | +var/ |
| 19 | +wheels/ |
| 20 | +share/python-wheels/ |
| 21 | +*.egg-info/ |
| 22 | +.installed.cfg |
| 23 | +*.egg |
| 24 | +MANIFEST |
| 25 | + |
| 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 | + |
| 32 | +# Installer logs |
| 33 | +pip-log.txt |
| 34 | +pip-delete-this-directory.txt |
| 35 | + |
| 36 | +# Unit test / coverage reports |
| 37 | +htmlcov/ |
| 38 | +.tox/ |
| 39 | +.nox/ |
| 40 | +.coverage |
| 41 | +.coverage.* |
| 42 | +.cache |
| 43 | +nosetests.xml |
| 44 | +coverage.xml |
| 45 | +*.cover |
| 46 | +*.py,cover |
| 47 | +.hypothesis/ |
| 48 | +.pytest_cache/ |
| 49 | +cover/ |
| 50 | +test/ |
| 51 | + |
| 52 | +# Translations |
| 53 | +*.mo |
| 54 | +*.pot |
| 55 | + |
| 56 | +# Django stuff: |
| 57 | +*.log |
| 58 | +local_settings.py |
| 59 | +db.sqlite3 |
| 60 | +db.sqlite3-journal |
| 61 | + |
| 62 | +# Flask stuff: |
| 63 | +instance/ |
| 64 | +.webassets-cache |
| 65 | + |
| 66 | +# Scrapy stuff: |
| 67 | +.scrapy |
| 68 | + |
| 69 | +# Sphinx documentation |
| 70 | +docs/_build/ |
| 71 | + |
| 72 | +# PyBuilder |
| 73 | +.pybuilder/ |
| 74 | +target/ |
| 75 | + |
| 76 | +# Jupyter Notebook |
| 77 | +.ipynb_checkpoints |
| 78 | + |
| 79 | +# IPython |
| 80 | +profile_default/ |
| 81 | +ipython_config.py |
| 82 | + |
| 83 | +# pyenv |
| 84 | +# For a library or package, you might want to ignore these files since the code is |
| 85 | +# intended to run in multiple environments; otherwise, check them in: |
| 86 | +.python-version |
| 87 | + |
| 88 | +# pipenv |
| 89 | +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
| 90 | +# However, in case of collaboration, if having platform-specific dependencies or dependencies |
| 91 | +# having no cross-platform support, pipenv may install dependencies that don't work, or not |
| 92 | +# install all needed dependencies. |
| 93 | +Pipfile.lock |
| 94 | + |
| 95 | +# UV |
| 96 | +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. |
| 97 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 98 | +# commonly ignored for libraries. |
| 99 | +uv.lock |
| 100 | + |
| 101 | +# poetry |
| 102 | +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
| 103 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 104 | +# commonly ignored for libraries. |
| 105 | +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
| 106 | +poetry.lock |
| 107 | + |
| 108 | +# pdm |
| 109 | +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. |
| 110 | +#pdm.lock |
| 111 | +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it |
| 112 | +# in version control. |
| 113 | +# https://pdm.fming.dev/latest/usage/project/#working-with-version-control |
| 114 | +.pdm.toml |
| 115 | +.pdm-python |
| 116 | +.pdm-build/ |
| 117 | + |
| 118 | +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm |
| 119 | +__pypackages__/ |
| 120 | + |
| 121 | +# Celery stuff |
| 122 | +celerybeat-schedule |
| 123 | +celerybeat.pid |
| 124 | + |
| 125 | +# SageMath parsed files |
| 126 | +*.sage.py |
| 127 | + |
| 128 | +# Environments |
| 129 | +.env |
| 130 | +.venv |
| 131 | +env/ |
| 132 | +venv/ |
| 133 | +ENV/ |
| 134 | +env.bak/ |
| 135 | +venv.bak/ |
| 136 | + |
| 137 | +# Spyder project settings |
| 138 | +.spyderproject |
| 139 | +.spyproject |
| 140 | + |
| 141 | +# Rope project settings |
| 142 | +.ropeproject |
| 143 | + |
| 144 | +# mkdocs documentation |
| 145 | +/site |
| 146 | + |
| 147 | +# mypy |
| 148 | +.mypy_cache/ |
| 149 | +.dmypy.json |
| 150 | +dmypy.json |
| 151 | + |
| 152 | +# Pyre type checker |
| 153 | +.pyre/ |
| 154 | + |
| 155 | +# pytype static type analyzer |
| 156 | +.pytype/ |
| 157 | + |
| 158 | +# Cython debug symbols |
| 159 | +cython_debug/ |
| 160 | + |
| 161 | +# PyCharm |
| 162 | +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
| 163 | +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
| 164 | +# and can be added to the global gitignore or merged into this file. For a more nuclear |
| 165 | +# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
| 166 | +.idea/ |
| 167 | + |
| 168 | +# Git |
| 169 | +.git/ |
| 170 | +.gitignore |
| 171 | + |
| 172 | +# Mac |
| 173 | +.DS_Store |
| 174 | + |
| 175 | +# Windows |
| 176 | +Thumbs.db |
| 177 | + |
| 178 | +# Claude Skills |
| 179 | +.claude-plugin/ |
| 180 | + |
| 181 | +# dev scripts in local |
| 182 | +dev/*.sh |
| 183 | + |
| 184 | +# Trae IDE |
| 185 | +.trae/ |
| 186 | + |
| 187 | +# ClawHub skill folder |
| 188 | +clawhub-skill/ |
| 189 | + |
| 190 | +# Python linting |
| 191 | +.ruff_cache |
| 192 | +.ruff.toml |
| 193 | + |
| 194 | +# Github Actions |
| 195 | +.github/ |
| 196 | + |
| 197 | +# screenshots images |
| 198 | +_assets/screenshots/ |
| 199 | + |
| 200 | +# test output |
| 201 | +test_output/ |
| 202 | + |
| 203 | +# Python packaing |
| 204 | +MANIFEST.in |
| 205 | + |
| 206 | +# env example |
| 207 | +.env.example |
0 commit comments