-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
45 lines (40 loc) · 1.28 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
[tool.poetry]
name = "yubihsm"
version = "3.1.1.dev0"
description = "Library for communication with a YubiHSM 2 over HTTP or USB."
authors = ["Dain Nilsson <[email protected]>"]
license = "APACHE-2.0"
homepage = "https://developers.yubico.com/YubiHSM2/"
repository = "https://github.com/Yubico/python-yubihsm"
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"
]
include = [
{ path = "COPYING", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.adoc", format = "sdist" },
"tests/",
]
[tool.poetry.dependencies]
python = "^3.8"
cryptography = ">=2.6"
requests = {version = "^2.0", optional = true}
pyusb = {version = "^1.0", optional = true}
[tool.poetry.extras]
http = ["requests"]
usb = ["pyusb"]
[tool.poetry.dev-dependencies]
pytest = "^8.0"
Sphinx = {version = "^7.1", python = ">=3.8"}
sphinx-rtd-theme = {version = "^1.2.2", python = ">=3.8"}
sphinx-autodoc-typehints = {version = "^1.2.4", python = ">=3.8"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]