/ .gitignore
.gitignore
 1  # Python cache/build
 2  __pycache__/
 3  *.py[cod]
 4  *.so
 5  .pytest_cache/
 6  .mypy_cache/
 7  .ruff_cache/
 8  
 9  # Packaging artifacts
10  build/
11  dist/
12  *.egg-info/
13  .eggs/
14  pip-wheel-metadata/
15  
16  # Virtual environments
17  venv/
18  .venv/
19  env/
20  
21  # IDE/editor
22  .idea/
23  .vscode/
24  
25  # OS noise
26  .DS_Store
27  Thumbs.db
28  
29  # Local outputs
30  *.log
31  /tmp/
32  .coverage
33  htmlcov/