-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 949 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 949 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "webauthn"
dynamic = ["version"]
description = "Pythonic WebAuthn"
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
keywords = ["webauthn", "fido2"]
authors = [{ name = "Duo Labs", email = "labs@duo.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
"pyasn1>=0.6.2",
"cbor2>=5.6.5",
"cryptography>=44.0.2",
"pyOpenSSL>=25.0.0",
]
[project.urls]
Homepage = "https://github.com/duo-labs/py_webauthn"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["webauthn", "webauthn.*"]
[tool.setuptools.package-data]
webauthn = ["py.typed"]
[tool.setuptools.dynamic]
version = { attr = "webauthn.__version__" }