python-fido2/pyproject.toml

50 lines
1.6 KiB
TOML
Raw Permalink Normal View History

2021-01-20 15:03:10 +01:00
[tool.poetry]
name = "fido2"
2024-03-13 09:37:04 +01:00
version = "1.1.4-dev.0"
2021-01-20 16:49:35 +01:00
description = "FIDO2/WebAuthn library for implementing clients and servers."
2021-01-20 15:03:10 +01:00
authors = ["Dain Nilsson <dain@yubico.com>"]
2021-01-20 16:49:35 +01:00
homepage = "https://github.com/Yubico/python-fido2"
repository = "https://github.com/Yubico/python-fido2"
keywords = ["fido2", "webauthn", "ctap", "u2f"]
classifiers = [
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
2021-08-19 14:27:21 +02:00
"Development Status :: 5 - Production/Stable",
2021-01-20 16:49:35 +01:00
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Internet",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = [
{ path = "COPYING", format = "sdist"},
{ path = "COPYING.MPLv2", format = "sdist"},
{ path = "COPYING.APLv2", format = "sdist"},
{ path = "NEWS", format = "sdist"},
{ path = "README.adoc", format = "sdist"},
2022-06-08 09:37:38 +02:00
{ path= "tests/", format = "sdist"},
{ path= "examples/", format = "sdist"},
]
2021-01-20 15:03:10 +01:00
[tool.poetry.dependencies]
2024-03-04 12:36:37 +01:00
python = "^3.8"
2024-03-12 16:19:39 +01:00
cryptography = ">=2.6, !=35, <45"
2022-04-25 12:56:22 +02:00
pyscard = {version = "^1.9 || ^2", optional = true}
2021-01-20 15:03:10 +01:00
2021-01-20 20:36:36 +01:00
[tool.poetry.extras]
pcsc = ["pyscard"]
2021-01-20 15:03:10 +01:00
[tool.poetry.dev-dependencies]
2022-04-25 12:56:22 +02:00
pytest = "^7.0"
2021-01-20 15:03:10 +01:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]