-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (71 loc) · 1.76 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "yubikey-manager"
version = "5.9.3-dev.0"
description = "Library and CLI for managing your YubiKey configuration."
authors = [
{ name = "Dain Nilsson", email = "<dain@yubico.com>" }
]
readme = "README.adoc"
requires-python = ">=3.10, <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, <52)",
"pyscard (>=2.0, <3)",
"fido2 (>=2.0, <3)",
"click (>=8.0, <9)",
"keyring (>=23.4, <26)",
"pywin32 (>=223) ; sys_platform == 'win32'",
"python-pskc (>=1.3, <2)",
]
[dependency-groups]
dev = [
"pytest>=8.0,<10",
"makefun>=1.9.5,<2",
"pyinstaller>=6.10,<7",
"sphinx>=7.4,<8",
"sphinx-rtd-theme>=3,<4",
"sphinx-autoapi>=3.3.3,<4",
]
[project.urls]
Homepage = "https://github.com/Yubico/yubikey-manager"
[project.scripts]
ykman = "ykman._cli.__main__:main"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[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.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint]
extend-select = ["E", "I", "S"]
[tool.pyright]
venvPath = "."
venv = ".venv"
exclude = ["tests/", "docs/"]
reportPrivateImportUsage = false
[tool.ty.src]
exclude = ["docs"]
[[tool.ty.overrides]]
include = ["tests/**", "**/test_*.py"]
[tool.ty.overrides.rules]
unresolved-attribute = "ignore"
invalid-argument-type = "ignore"