File: pyproject.toml

package info (click to toggle)
python-fido2 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,456 kB
  • sloc: python: 11,423; javascript: 181; sh: 21; makefile: 9
file content (57 lines) | stat: -rw-r--r-- 1,722 bytes parent folder | download
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
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "fido2"
version = "2.0.0"
description = "FIDO2/WebAuthn library for implementing clients and servers."
authors = [{ name = "Dain Nilsson", email = "<dain@yubico.com>" }]
readme = "README.adoc"
requires-python = ">=3.10, <4"
license = { file = "COPYING" }
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 :: 5 - Production/Stable",
  "Intended Audience :: Developers",
  "Intended Audience :: System Administrators",
  "Topic :: Internet",
  "Topic :: Security :: Cryptography",
  "Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["cryptography (>=2.6, !=35, <48)"]

[project.optional-dependencies]
pcsc = ["pyscard (>=1.9, <3)"]

[project.urls]
Homepage = "https://github.com/Yubico/python-fido2"

[tool.poetry]
include = [
  { path = "COPYING", format = "sdist" },
  { path = "COPYING.MPLv2", format = "sdist" },
  { path = "COPYING.APLv2", format = "sdist" },
  { path = "NEWS", format = "sdist" },
  { path = "README.adoc", format = "sdist" },
  { path = "tests/", format = "sdist" },
  { path = "examples/", format = "sdist" },
]

[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
Sphinx = "^8.1"
sphinx-rtd-theme = "^3.0.1"
sphinx-autoapi = "^3.3.3"

[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"

[tool.pytest.ini_options]
testpaths = ["tests"]

[tool.ruff.lint]
select = ["I"]  # Organize imports