-
Notifications
You must be signed in to change notification settings - Fork 127
/
pyproject.toml
54 lines (48 loc) · 1.34 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "yubikey-manager"
version = "5.5.2-dev.0"
description = "Tool for managing your YubiKey configuration."
authors = ["Dain Nilsson <dain@yubico.com>"]
license = "BSD"
homepage = "https://github.com/Yubico/yubikey-manager"
repository = "https://github.com/Yubico/yubikey-manager"
keywords = ["yubikey", "yubiotp", "piv", "fido"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Security :: Cryptography",
"Topic :: Utilities"
]
include = [
{ path = "COPYING", format = "sdist"},
{ path = "NEWS", format = "sdist"},
{ path = "README.adoc", format = "sdist"},
"man/",
"tests/",
]
packages = [
{ include = "yubikit" },
{ include = "ykman" },
]
[tool.poetry.dependencies]
python = "^3.8"
cryptography = ">=3.0, <45"
pyscard = "^2.0"
fido2 = "^1.0"
click = "^8.0"
keyring = ">=23.4, <26"
pywin32 = {version = ">=223", platform = "win32"}
[tool.poetry.dev-dependencies]
pytest = "^8.0"
makefun = "^1.9.5"
pyinstaller = {version = "^6.0", python = "<3.13"}
Sphinx = {version = "^7.2", python = ">=3.9, <3.13"}
sphinx-rtd-theme = "^1.2.2"
sphinx-autodoc-typehints = "^2"
[tool.poetry.scripts]
ykman = "ykman._cli.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]