2022-02-10 15:29:20 +03:00
|
|
|
[tool.poetry]
|
2022-05-06 11:18:46 +03:00
|
|
|
name = "authenticator-helper"
|
2022-02-10 15:29:20 +03:00
|
|
|
version = "0.1.0"
|
2022-05-06 11:18:46 +03:00
|
|
|
description = "Yubico Authenticator Helper"
|
2022-02-10 15:29:20 +03:00
|
|
|
authors = ["Dain Nilsson <dain@yubico.com>"]
|
2022-05-06 15:50:00 +03:00
|
|
|
packages = [
|
|
|
|
{ include = "helper" },
|
|
|
|
]
|
|
|
|
|
2022-02-10 15:29:20 +03:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-02-23 16:13:20 +03:00
|
|
|
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"
|
2023-12-14 10:37:10 +03:00
|
|
|
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
|