/ .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__/ 26 27 # project 28 tests/tmp/* 29 tests/logs/ 30 !tests/tmp/.gitkeep 31 *.spec 32 demo.gif 33 .ports.json