-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.48 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
[project]
name = "yubihsm"
version = "3.1.2-dev.0"
description = "Library for communication with a YubiHSM 2 over HTTP or USB."
authors = [{ name = "Dain Nilsson", email = "<dain@yubico.com>" }]
readme = "README.adoc"
requires-python = ">=3.9"
license = { file = "COPYING" }
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries"
]
dependencies = ["cryptography (>=2.6, <47)"]
[dependency-groups]
dev = [
"pytest>=8.4.1",
"sphinx>=8.1.3 ; python_full_version >= '3.10'",
"sphinx-autoapi>=3.6.0 ; python_full_version >= '3.10'",
"sphinx-rtd-theme>=3.0.2 ; python_full_version >= '3.10'",
]
[project.optional-dependencies]
http = ["requests (>=2.0, <3.0)"]
usb = ["pyusb (>=1.0, <2.0)"]
[project.urls]
Homepage = "https://developers.yubico.com/YubiHSM2/"
Repository = "https://github.com/Yubico/python-yubihsm"
[tool.poetry]
include = [
{ path = "COPYING", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.adoc", format = "sdist" },
"tests/",
]
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint]
select = ["I", "S"]
exclude = ["tests/*"]
[tool.pyright]
venvPath = "."
venv = ".venv"
exclude = ["tests/", "docs/", "examples/"]