python-fido2/pyproject.toml

44 lines
1.4 KiB
TOML
Raw Normal View History

2021-01-20 15:03:10 +01:00
[tool.poetry]
name = "fido2"
version = "1.0.0-dev0"
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",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Internet",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = ["COPYING", "COPYING.MPLv2", "COPYING.APLv2", "NEWS", "README.adoc"]
2021-01-20 15:03:10 +01:00
[tool.poetry.dependencies]
python = "^3.6"
cryptography = "^2.1 || ^3.0"
dataclasses = {version = "^0.8", python = "<3.7"}
pyscard = {version = "^1.9 || ^2.0.0", optional = true}
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]
pytest = "^6.0"
mock = "^4.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]