Spaces:
Runtime error
Runtime error
File size: 953 Bytes
9a87834 8b6cf81 9a87834 8b6cf81 9a87834 8b6cf81 362de3f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
[tool.poetry]
name = "app"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
logzero = "^1.7.0"
install = "^1.3.5"
translators = "^5.3.1"
tenacity = "^8.0.1"
opencv-python = "^4.6.0"
fastlid = "^0.1.7"
[tool.poetry.dev-dependencies]
poethepoet = "^0.16.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
skip-string-normalization = 0
[tool.poe.tasks]
memo = "echo poe test or poetry run poe test"
test = "pytest tests"
pyright = "pyright ptextpad"
flake8 = "flake8 ptextpad --ignore F401,E501,F841"
check = ["pyright", "flake8"]
export = "poetry export --without-hashes -f requirements.txt -o requirements.txt"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pyright]
venvPath = ".venv"
reportTypeshedErrors = false
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.8"
ignore = []
|