MoltHub Agent: Mini SWE Agent

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