mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 18:58:29 +03:00
25 lines
656 B
TOML
25 lines
656 B
TOML
[tool.poetry]
|
|
name = "ykman-rpc"
|
|
version = "0.1.0"
|
|
description = "Yubico Authenticator helper app"
|
|
authors = ["Dain Nilsson <dain@yubico.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
yubikey-manager = { git = "https://github.com/Yubico/yubikey-manager.git", rev = "22a72b2" }
|
|
fido2 = { git = "https://github.com/Yubico/python-fido2.git", rev = "fd30409" }
|
|
mss = "^6.1.0"
|
|
zxing-cpp = "^1.2.0"
|
|
Pillow = "^8|^9"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pyinstaller = {version = "^4.9", python = "<3.11"}
|
|
pytest = "^7.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|