-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 816 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 816 Bytes
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
[tool.poetry]
name = "sag-py-auth"
version = "1.2.5"
description = "secure fastapi service with keycloak jwt bearer authentication"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
anyio = "^4.9.0"
cachetools = ">=6.0.0"
contextvars = ">=2.4.0"
cryptography = ">=46.0.5"
fastapi = {version = ">=0.115.12", extras = ["standard"]}
PyJWT = "2.10.1"
starlette = ">= 0.46.2"
zipp = ">=3.21.0"
[tool.poetry.group.dev.dependencies]
build = "*"
coverage-lcov = "*"
starlette = ">=0.46.2"
mock = "*"
mypy = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
requests = "*"
ruff = "*"
types-cachetools = "*"
types-requests = ">=2.32.0"
types-mock = "*"
urllib3 = ">=2.2.2"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"