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"
|
2023-08-21 16:37:24 +03:00
|
|
|
yubikey-manager = "5.2.0"
|
2023-06-21 10:57:10 +03:00
|
|
|
mss = "^9.0.1"
|
2023-09-19 15:17:50 +03:00
|
|
|
zxing-cpp = [
|
2023-11-23 16:09:47 +03:00
|
|
|
{git = "https://github.com/zxing-cpp/zxing-cpp.git", rev="7a0de5b0ee8942f7c45410c91996cbab2397938b", subdirectory = "wrappers/python", markers = "sys_platform != 'win32'"},
|
2023-10-05 19:50:49 +03:00
|
|
|
{path = "zxing_cpp-2.1.0-cp312-cp312-win_amd64.whl", markers = "sys_platform == 'win32'"}
|
2023-09-19 15:17:50 +03:00
|
|
|
]
|
2023-08-21 16:37:24 +03:00
|
|
|
Pillow = "^10.0.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"}
|
2023-08-21 16:37:24 +03:00
|
|
|
pytest = "^7.4.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"]
|