-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
59 lines (55 loc) · 1.41 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
53
54
55
56
57
58
59
[tool.poetry]
name = "olas-operate-middleware"
version = "0.1.0-rc115"
description = ""
authors = ["David Vilela <dvilelaf@gmail.com>", "Viraj Patel <vptl185@gmail.com>"]
readme = "README.md"
packages = [
{ include = "operate" }
]
include = [
"operate/data/acn/*",
"operate/data/contracts/*",
"operate/data/contracts/service_staking_token/*",
"operate/data/contracts/service_staking_token/build/*",
]
[tool.poetry.scripts]
operate = "operate.cli:main"
[tool.poetry.dependencies]
python = "<3.12,>=3.9"
open-autonomy = "==0.16.1"
open-aea-ledger-cosmos = "==1.57.0"
open-aea-ledger-ethereum = "==1.57.0"
open-aea-ledger-ethereum-flashbots = "==1.57.0"
open-aea-cli-ipfs = "==1.57.0"
clea = "==0.1.0rc4"
cytoolz = "==0.12.3"
docker = "6.1.2"
fastapi = "==0.110.0"
eth-hash = "==0.7.0"
eth-account = "==0.8.0"
eth-keyfile = "==0.6.1"
eth-keys = "==0.4.0"
eth-rlp = "==0.3.0"
eth-typing = "==3.5.2"
eth-utils = "==2.3.1"
eth-abi = "==5.1.0"
frozenlist = "==1.4.1"
hexbytes = "==0.3.1"
ipfshttpclient = "==0.8.0a2"
jsonschema = "==4.3.3"
multidict = "==6.0.5"
requests-toolbelt = "1.0.0"
starlette = "==0.36.3"
uvicorn = "==0.27.0"
web3 = "==6.1.0"
psutil = "^5.9.8"
pyinstaller = "^6.8.0"
aiohttp = "3.9.5"
halo = "^0.0.31"
icecream = "^2.1.3"
[tool.poetry.group.development.dependencies]
tomte = {version = "0.2.17", extras = ["cli"]}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"