yubioath-flutter/helper/pyproject.toml

38 lines
745 B
TOML
Raw Normal View History

2022-02-10 15:29:20 +03:00
[tool.poetry]
name = "authenticator-helper"
2022-02-10 15:29:20 +03:00
version = "0.1.0"
description = "Yubico Authenticator Helper"
2022-02-10 15:29:20 +03:00
authors = ["Dain Nilsson <dain@yubico.com>"]
packages = [
{ include = "helper" },
]
2022-02-10 15:29:20 +03:00
[tool.poetry.dependencies]
python = "^3.8"
2024-06-25 15:06:19 +03:00
yubikey-manager = "^5.5"
2023-06-21 10:57:10 +03:00
mss = "^9.0.1"
2024-02-05 17:12:49 +03:00
Pillow = "^10.2.0"
zxing-cpp = "^2.2.0"
2022-02-10 15:29:20 +03:00
[tool.poetry.dev-dependencies]
2023-10-05 14:05:29 +03:00
pyinstaller = {version = "^6.0", python = "<3.13"}
2024-02-05 17:12:49 +03:00
pytest = "^8.0.0"
2023-11-29 12:25:06 +03:00
mypy = "^1.7.1"
2024-02-05 17:12:49 +03:00
types-Pillow = "^10.2.0.0"
2022-02-10 15:29:20 +03:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
2023-11-29 12:25:06 +03:00
[tool.mypy]
files = "."
check_untyped_defs = true
[[tool.mypy.overrides]]
2023-11-30 16:20:23 +03:00
module = ["smartcard.*", "zxingcpp"]
2023-11-29 12:25:06 +03:00
ignore_missing_imports = true