-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 889 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 889 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fido2client"
version = "0.11.1"
description = "WebAuthn API FIDO2 client"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "orglnte" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fido2>=0.9.0",
"cbor2>=5.0.0",
"requests>=2.25.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/orglnte/python-fido2-client"
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
[tool.pytest.ini_options]
testpaths = ["tests"]