/ .gitignore
.gitignore
 1  # editors
 2  .idea/
 3  .vscode/
 4  
 5  # python
 6  *.egg-info/
 7  *.py[cod]
 8  .venv/
 9  .venvs/
10  /build/
11  /dist/
12  
13  # tools
14  .coverage*
15  /.pdm-build/
16  /htmlcov/
17  /site/
18  uv.lock
19  
20  # cache
21  .cache/
22  .pytest_cache/
23  .mypy_cache/
24  .ruff_cache/
25  __pycache__/