feat(slient): allow turn off all outputs

This commit is contained in:
Jianqi Pan
2024-07-29 21:07:48 +09:00
parent 09d331d8f0
commit 117f153b33
6 changed files with 467 additions and 188 deletions

View File

@ -17,6 +17,22 @@ onnxruntime-gpu = "^1.18.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-benchmark = "^4.0.0"
ruff = "^0.5.5"
isort = "^5.13.2"
black = "^24.4.2"
mypy = "^1.11.0"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
[tool.mypy]
ignore_missing_imports = true
[tool.poetry.package.include]
"stubs/**/*.pyi" = {}
[build-system]
requires = ["poetry-core"]