1+ # Custom files
12.venv *
23__pycache__ /
34.env
45.pytest_cache /
56.mypy_cache /
7+ .cache /
68TODO * .md
79unused /
810* .egg-info
@@ -14,3 +16,221 @@ dist/
1416* _cache.json
1517posts. *
1618test.ipynb
19+ evaluation_results *
20+
21+ # Byte-compiled / optimized / DLL files
22+ __pycache__ /
23+ * .py [codz ]
24+ * $py.class
25+
26+ # C extensions
27+ * .so
28+
29+ # Distribution / packaging
30+ .Python
31+ build /
32+ develop-eggs /
33+ dist /
34+ downloads /
35+ eggs /
36+ .eggs /
37+ lib /
38+ lib64 /
39+ parts /
40+ sdist /
41+ var /
42+ wheels /
43+ share /python-wheels /
44+ * .egg-info /
45+ .installed.cfg
46+ * .egg
47+ MANIFEST
48+
49+ # PyInstaller
50+ # Usually these files are written by a python script from a template
51+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
52+ * .manifest
53+ * .spec
54+
55+ # Installer logs
56+ pip-log.txt
57+ pip-delete-this-directory.txt
58+
59+ # Unit test / coverage reports
60+ htmlcov /
61+ .tox /
62+ .nox /
63+ .coverage
64+ .coverage. *
65+ .cache
66+ nosetests.xml
67+ coverage.xml
68+ * .cover
69+ * .py.cover
70+ .hypothesis /
71+ .pytest_cache /
72+ cover /
73+
74+ # Translations
75+ * .mo
76+ * .pot
77+
78+ # Django stuff:
79+ * .log
80+ local_settings.py
81+ db.sqlite3
82+ db.sqlite3-journal
83+
84+ # Flask stuff:
85+ instance /
86+ .webassets-cache
87+
88+ # Scrapy stuff:
89+ .scrapy
90+
91+ # Sphinx documentation
92+ docs /_build /
93+
94+ # PyBuilder
95+ .pybuilder /
96+ target /
97+
98+ # Jupyter Notebook
99+ .ipynb_checkpoints
100+
101+ # IPython
102+ profile_default /
103+ ipython_config.py
104+
105+ # pyenv
106+ # For a library or package, you might want to ignore these files since the code is
107+ # intended to run in multiple environments; otherwise, check them in:
108+ # .python-version
109+
110+ # pipenv
111+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
112+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
113+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
114+ # install all needed dependencies.
115+ # Pipfile.lock
116+
117+ # UV
118+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
119+ # This is especially recommended for binary packages to ensure reproducibility, and is more
120+ # commonly ignored for libraries.
121+ # uv.lock
122+
123+ # poetry
124+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
125+ # This is especially recommended for binary packages to ensure reproducibility, and is more
126+ # commonly ignored for libraries.
127+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
128+ # poetry.lock
129+ # poetry.toml
130+
131+ # pdm
132+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
133+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
134+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
135+ # pdm.lock
136+ # pdm.toml
137+ .pdm-python
138+ .pdm-build /
139+
140+ # pixi
141+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
142+ # pixi.lock
143+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
144+ # in the .venv directory. It is recommended not to include this directory in version control.
145+ .pixi
146+
147+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
148+ __pypackages__ /
149+
150+ # Celery stuff
151+ celerybeat-schedule
152+ celerybeat.pid
153+
154+ # Redis
155+ * .rdb
156+ * .aof
157+ * .pid
158+
159+ # RabbitMQ
160+ mnesia /
161+ rabbitmq /
162+ rabbitmq-data /
163+
164+ # ActiveMQ
165+ activemq-data /
166+
167+ # SageMath parsed files
168+ * .sage.py
169+
170+ # Environments
171+ .env
172+ .envrc
173+ .venv
174+ env /
175+ venv /
176+ ENV /
177+ env.bak /
178+ venv.bak /
179+
180+ # Spyder project settings
181+ .spyderproject
182+ .spyproject
183+
184+ # Rope project settings
185+ .ropeproject
186+
187+ # mkdocs documentation
188+ /site
189+
190+ # mypy
191+ .mypy_cache /
192+ .dmypy.json
193+ dmypy.json
194+
195+ # Pyre type checker
196+ .pyre /
197+
198+ # pytype static type analyzer
199+ .pytype /
200+
201+ # Cython debug symbols
202+ cython_debug /
203+
204+ # PyCharm
205+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
206+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
207+ # and can be added to the global gitignore or merged into this file. For a more nuclear
208+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
209+ # .idea/
210+
211+ # Abstra
212+ # Abstra is an AI-powered process automation framework.
213+ # Ignore directories containing user credentials, local state, and settings.
214+ # Learn more at https://abstra.io/docs
215+ .abstra /
216+
217+ # Visual Studio Code
218+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
219+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
220+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
221+ # you could uncomment the following to ignore the entire vscode folder
222+ # .vscode/
223+
224+ # Ruff stuff:
225+ .ruff_cache /
226+
227+ # PyPI configuration file
228+ .pypirc
229+
230+ # Marimo
231+ marimo /_static /
232+ marimo /_lsp /
233+ __marimo__ /
234+
235+ # Streamlit
236+ .streamlit /secrets.toml
0 commit comments