yubioath-flutter/helper/pyproject.toml

31 lines
822 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"
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"
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-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"]