File: pyproject.toml

package info (click to toggle)
python-fido2 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,456 kB
  • sloc: python: 11,423; javascript: 181; sh: 21; makefile: 9
file content (29 lines) | stat: -rw-r--r-- 556 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
[project]
name = "fido2-example-server"
version = "0.1.0"
description = "Example server for python-fido2"
authors = [
  { name = "Dain Nilsson", email = "<dain@yubico.com>" }
]
requires-python = ">=3.10, <4"
license = "Apache-2"
dependencies = [
  "Flask (>=2.0, <3)",
  "fido2",
]

[tool.poetry.dependencies]
fido2 = {path = "../.."}

[tool.poetry]
requires-poetry = ">=2.0"
packages = [
  { include = "server" },
]

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

[project.scripts]
server = "server.server:main"