-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (43 loc) · 1.25 KB
/
pyproject.toml
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
[tool.poetry]
name = "certified"
version = "0.10.0"
description = "The missing certificate infrastructure for web APIs."
authors = [
"David M. Rogers <[email protected]>",
]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/ORNL/certified"
documentation = "https://certified.readthedocs.io/"
[tool.poetry.scripts]
message = "certified.message:app"
certified = "certified.certified:app"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
cryptography = ">=43.0.1"
pydantic = "^2.8.2"
typer = "^0.12.3"
biscuit-python = "^0.3.0"
python-logging-loki = "^0.3.1" # https://blog.pushp.ovh/capturing-fastapi-server-access-logs-using-loki-and-visualizing-them-on-grafana
pyyaml = "^6.0.2"
[tool.poetry.group.http]
optional = true
[tool.poetry.group.http.dependencies]
httpx = "^0.27.0"
uvicorn = "^0.30.6"
fastapi = "^0.115.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocstrings = {extras = ["python"], version = "^0.25.2"}
mkdocs-material = "^9.5.30"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
mypy = "^1.11.1"
pytest-cov = ">=4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"