-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.44 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
55
56
57
58
59
60
[project]
name = "yubikey-manager"
version = "5.5.2-dev.0"
description = "Library and CLI for managing your YubiKey configuration."
authors = [
{ name = "Dain Nilsson", email = "<[email protected]>" }
]
readme = "README.adoc"
requires-python = ">=3.8, <4"
license = { file = "COPYING" }
keywords = ["yubikey", "yubiotp", "piv", "fido"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Security :: Cryptography",
"Topic :: Utilities"
]
dependencies = [
"cryptography (>=3.0, <45)",
"pyscard (>=2.0, <3)",
"fido2 (>=1.0, <2)",
"click (>=8.0, <9)",
"keyring (>=23.4, <26)",
"pywin32 (>=223) ; sys_platform == 'win32'",
]
[project.urls]
Homepage = "https://github.com/Yubico/yubikey-manager"
[project.scripts]
ykman = "ykman._cli.__main__:main"
[tool.poetry]
requires-poetry = ">=2.0"
include = [
{ path = "COPYING", format = "sdist"},
{ path = "NEWS", format = "sdist"},
{ path = "README.adoc", format = "sdist"},
"man/",
"tests/",
]
packages = [
{ include = "yubikit" },
{ include = "ykman" },
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
makefun = "^1.9.5"
pyinstaller = { version = "^6.10", python = "<3.14" }
Sphinx = { version = "^7.2", python = ">=3.9" }
sphinx-rtd-theme = "^1.2.2"
sphinx-autodoc-typehints = "^2"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]