forked from agent-network-protocol/did-wba-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 701 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (29 loc) · 701 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
[tool.poetry]
name = "did-wba-server"
version = "0.1.0"
description = "DID WBA Server Example"
authors = ["Your Name <your.email@example.com>"]
packages = [
{ include = "api" },
{ include = "auth" },
{ include = "core" },
{ include = "utils" }
]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.103.0"
uvicorn = "^0.32.0"
python-dotenv = "^1.0.0"
pyjwt = "^2.8.0"
agent-connect = "^0.3.5"
python-multipart = "^0.0.6"
aiohttp = "^3.8.5"
cryptography = "^43.0.3"
canonicaljson = "^2.0.0"
pydantic = "^2.3.0"
pydantic-settings = "^2.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"