|
| 1 | +# Byte-compiled / optimized / DLL files |
| 2 | +__pycache__/ |
| 3 | +*.py[cod] |
| 4 | +*$py.class |
| 5 | + |
| 6 | +# C extensions |
| 7 | +*.so |
| 8 | + |
| 9 | +# Distribution / packaging |
| 10 | +.Python |
| 11 | +build/ |
| 12 | +develop-eggs/ |
| 13 | +dist/ |
| 14 | +downloads/ |
| 15 | +eggs/ |
| 16 | +.eggs/ |
| 17 | +./lib/ |
| 18 | +lib64/ |
| 19 | +parts/ |
| 20 | +sdist/ |
| 21 | +var/ |
| 22 | +wheels/ |
| 23 | +share/python-wheels/ |
| 24 | +*.egg-info/ |
| 25 | +.installed.cfg |
| 26 | +*.egg |
| 27 | +MANIFEST |
| 28 | +requirements.txt |
| 29 | + |
| 30 | +# PyInstaller |
| 31 | +# Usually these files are written by a python script from a template |
| 32 | +# before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 33 | +*.manifest |
| 34 | +*.spec |
| 35 | + |
| 36 | +# Installer logs |
| 37 | +pip-log.txt |
| 38 | +pip-delete-this-directory.txt |
| 39 | + |
| 40 | +# Unit test / coverage reports |
| 41 | +htmlcov/ |
| 42 | +.tox/ |
| 43 | +.nox/ |
| 44 | +.coverage |
| 45 | +.coverage.* |
| 46 | +.cache |
| 47 | +nosetests.xml |
| 48 | +coverage.xml |
| 49 | +*.cover |
| 50 | +*.py,cover |
| 51 | +.hypothesis/ |
| 52 | +.pytest_cache/ |
| 53 | +cover/ |
| 54 | + |
| 55 | +# Translations |
| 56 | +*.mo |
| 57 | +*.pot |
| 58 | + |
| 59 | +# Django stuff: |
| 60 | +local_settings.py |
| 61 | +db.sqlite3 |
| 62 | +db.sqlite3-journal |
| 63 | + |
| 64 | +# Flask stuff: |
| 65 | +instance/ |
| 66 | +.webassets-cache |
| 67 | + |
| 68 | +# Scrapy stuff: |
| 69 | +.scrapy |
| 70 | + |
| 71 | +# Sphinx documentation |
| 72 | +docs/_build/ |
| 73 | + |
| 74 | +# PyBuilder |
| 75 | +.pybuilder/ |
| 76 | +target/ |
| 77 | + |
| 78 | +# Jupyter Notebook |
| 79 | +.ipynb_checkpoints |
| 80 | + |
| 81 | +# IPython |
| 82 | +profile_default/ |
| 83 | +ipython_config.py |
| 84 | + |
| 85 | +# pyenv |
| 86 | +# For a library or package, you might want to ignore these files since the code is |
| 87 | +# intended to run in multiple environments; otherwise, check them in: |
| 88 | +.python-version |
| 89 | + |
| 90 | +# pipenv |
| 91 | +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
| 92 | +# However, in case of collaboration, if having platform-specific dependencies or dependencies |
| 93 | +# having no cross-platform support, pipenv may install dependencies that don't work, or not |
| 94 | +# install all needed dependencies. |
| 95 | +#Pipfile.lock |
| 96 | + |
| 97 | +# poetry |
| 98 | +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
| 99 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 100 | +# commonly ignored for libraries. |
| 101 | +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
| 102 | +# poetry.lock |
| 103 | + |
| 104 | +# pdm |
| 105 | +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. |
| 106 | +#pdm.lock |
| 107 | +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it |
| 108 | +# in version control. |
| 109 | +# https://pdm.fming.dev/#use-with-ide |
| 110 | +.pdm.toml |
| 111 | + |
| 112 | +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm |
| 113 | +__pypackages__/ |
| 114 | + |
| 115 | +# Celery stuff |
| 116 | +celerybeat-schedule |
| 117 | +celerybeat.pid |
| 118 | + |
| 119 | +# SageMath parsed files |
| 120 | +*.sage.py |
| 121 | + |
| 122 | +# Environments |
| 123 | +.env |
| 124 | +frontend/.env |
| 125 | +.venv |
| 126 | +env/ |
| 127 | +venv/ |
| 128 | +ENV/ |
| 129 | +env.bak/ |
| 130 | +.env.bak |
| 131 | +venv.bak/ |
| 132 | +*venv/ |
| 133 | + |
| 134 | +# Spyder project settings |
| 135 | +.spyderproject |
| 136 | +.spyproject |
| 137 | + |
| 138 | +# Rope project settings |
| 139 | +.ropeproject |
| 140 | + |
| 141 | +# mkdocs documentation |
| 142 | +/site |
| 143 | + |
| 144 | +# mypy |
| 145 | +.mypy_cache/ |
| 146 | +.dmypy.json |
| 147 | +dmypy.json |
| 148 | + |
| 149 | +# Pyre type checker |
| 150 | +.pyre/ |
| 151 | + |
| 152 | +# pytype static type analyzer |
| 153 | +.pytype/ |
| 154 | + |
| 155 | +# Cython debug symbols |
| 156 | +cython_debug/ |
| 157 | + |
| 158 | +# PyCharm |
| 159 | +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
| 160 | +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
| 161 | +# and can be added to the global gitignore or merged into this file. For a more nuclear |
| 162 | +# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
| 163 | +.idea/ |
| 164 | + |
| 165 | +# VS Code: Ignore all but certain files that specify repo-specific settings. |
| 166 | +# https://stackoverflow.com/questions/32964920/should-i-commit-the-vscode-folder-to-source-control |
| 167 | +.vscode/**/* |
| 168 | +!.vscode/extensions.json |
| 169 | +!.vscode/settings.json |
| 170 | +!.vscode/tasks.json |
| 171 | + |
| 172 | +# VS Code extensions/forks: |
| 173 | +.cursorignore |
| 174 | +.rooignore |
| 175 | +.clineignore |
| 176 | +.windsurfignore |
| 177 | +.cursorrules |
| 178 | +.roorules |
| 179 | +.clinerules |
| 180 | +.windsurfrules |
| 181 | +.cursor/rules |
| 182 | +.roo/rules |
| 183 | +.cline/rules |
| 184 | +.windsurf/rules |
| 185 | +.repomix |
| 186 | +repomix-output.txt |
| 187 | + |
| 188 | +# evaluation |
| 189 | +evaluation/evaluation_outputs |
| 190 | +evaluation/outputs |
| 191 | +evaluation/swe_bench/eval_workspace* |
| 192 | +evaluation/SWE-bench/data |
| 193 | +evaluation/webarena/scripts/webarena_env.sh |
| 194 | +evaluation/bird/data |
| 195 | +evaluation/gaia/data |
| 196 | +evaluation/gorilla/data |
| 197 | +evaluation/toolqa/data |
| 198 | +evaluation/scienceagentbench/benchmark |
| 199 | +evaluation/commit0_bench/repos |
| 200 | + |
| 201 | +# openhands resolver |
| 202 | +output/ |
| 203 | + |
| 204 | +# frontend |
| 205 | + |
| 206 | +# dependencies |
| 207 | +frontend/.pnp |
| 208 | +frontend/bun.lockb |
| 209 | +frontend/yarn.lock |
| 210 | +.pnp.js |
| 211 | + |
| 212 | +# testing |
| 213 | +frontend/coverage |
| 214 | +test_results* |
| 215 | +/_test_files_tmp/ |
| 216 | + |
| 217 | +# production |
| 218 | +frontend/build |
| 219 | +frontend/dist |
| 220 | + |
| 221 | +# misc |
| 222 | +.DS_Store |
| 223 | +.env.local |
| 224 | +.env.development.local |
| 225 | +.env.test.local |
| 226 | +.env.production.local |
| 227 | + |
| 228 | +npm-debug.log* |
| 229 | +yarn-debug.log* |
| 230 | +yarn-error.log* |
| 231 | + |
| 232 | +logs |
| 233 | + |
| 234 | +# agent |
| 235 | +.envrc |
| 236 | +/workspace |
| 237 | +/_test_workspace |
| 238 | +/debug |
| 239 | +cache |
| 240 | + |
| 241 | +# configuration |
| 242 | +config.toml |
| 243 | +config.toml_ |
| 244 | +config.toml.bak |
| 245 | + |
| 246 | +# swe-bench-eval |
| 247 | +image_build_logs |
| 248 | +run_instance_logs |
| 249 | + |
| 250 | +runtime_*.tar |
| 251 | + |
| 252 | +# docker build |
| 253 | +containers/runtime/Dockerfile |
| 254 | +containers/runtime/project.tar.gz |
| 255 | +containers/runtime/code |
| 256 | +**/node_modules/ |
| 257 | + |
| 258 | +# test results |
| 259 | +test-results |
| 260 | +.sessions |
| 261 | +.eval_sessions |
0 commit comments