forked from Yubico/yubikey-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.35 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
[tool.poetry]
name = "yubikey-manager"
version = "4.0.10.dev0"
description = "Tool for managing your YubiKey configuration."
authors = ["Dain Nilsson <[email protected]>"]
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.6"
dataclasses = {version = "^0.8", python = "<3.7"}
cryptography = ">=2.1, <39"
pyOpenSSL = {version = ">=0.15.1", optional = true}
pyscard = "^1.9 || ^2.0"
fido2 = ">=0.9, <2.0"
click = "^7.0 || ^8.0"
pywin32 = {version = ">=223", platform = "win32"}
[tool.poetry.dev-dependencies]
pytest = "^6.0"
pyOpenSSL = "^17.0"
makefun = "^1.9.5"
pyinstaller = {version = "^4.10", python = "<3.11"}
[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"]