-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 980 Bytes
/
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
[tool.poetry]
name = "echo-agent"
version = "0.2.0"
description = "A \"hollow\" agent for use in testing"
authors = ["Daniel Bluhm <dbluhm@pm.me>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.7"
aries-staticagent = { git = "https://github.com/hyperledger/aries-staticagent-python", rev = "1f27f85cf72cc6a2e10a6495c85f2b21462362cd", optional = true }
fastapi = { version = "^0.79.0", optional = true }
pydantic = { version = "^1.9.1", optional = true }
httpx = { version = "^0.15.4", optional = true }
aiohttp = { version = "^3.8.0", optional = true }
async-selective-queue = "^0.1.0"
[tool.poetry.dev-dependencies]
black = "^23.3.0"
flake8 = "^5.0.4"
pre-commit = "^2.13.0"
pytest = "^6.2.5"
pytest-asyncio = "^0.15.1"
pytest-cov = "^3.0.0"
uvicorn = "^0.15.0"
[tool.poetry.extras]
client = ["httpx"]
server = ["fastapi", "aries-staticagent", "aiohttp", "pydantic"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"