-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 969 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
33
34
35
36
37
38
39
40
[tool.poetry]
name = "uagents"
version = "0.6.2"
description = "Lightweight framework for rapid agent-based development"
authors = ["Ed FitzGerald <edward.fitzgerald@fetch.ai>", "James Riehl <james.riehl@fetch.ai>", "Alejandro Morales <alejandro.madrigal@fetch.ai>"]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
pydantic = "^1.10.2"
msgpack = "^1.0.4"
bech32 = "^1.2.0"
ecdsa = "^0.18.0"
apispec = "^6.0.2"
uvicorn = "^0.20.0"
aiohttp = "^3.8.3"
cosmpy = "^0.9.1"
websockets = "^10.4"
[tool.poetry.dev-dependencies]
aioresponses = "^0.7.4"
black = "^23.1.0"
pytest = "^7.1.3"
pylint = "^2.15.3"
mkdocs = "^1.4.2"
mkdocs-material = "^9.1.13"
[tool.poetry.group.orm.dependencies]
tortoise-orm = "^0.19.2"
[tool.poetry.group.geo.dependencies]
geopy = "^2.3.0"
[tool.poetry.group.remote-agents.dependencies]
pyngrok = "^5.2.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"