-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
47 lines (43 loc) · 1.46 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
[tool.poetry]
name = "mech-client"
version = "0.2.19"
description = "Basic client to interact with a mech"
authors = ["David Minarsch <[email protected]>"]
readme = "README.md"
packages = [{include = "mech_client"}]
license = "Apache-2.0"
include = [
"mech_client/helpers/acn/*",
"mech_client/helpers/acn/*.md",
"mech_client/helpers/acn/*.yaml",
"mech_client/helpers/acn/*.proto",
"mech_client/helpers/acn/tests/*",
"mech_client/helpers/acn_data_share/*",
"mech_client/helpers/acn_data_share/*.md",
"mech_client/helpers/acn_data_share/*.yaml",
"mech_client/helpers/acn_data_share/*.proto",
"mech_client/helpers/acn_data_share/tests/*",
"mech_client/helpers/p2p_libp2p_client/*",
"mech_client/helpers/p2p_libp2p_client/*.md",
"mech_client/helpers/p2p_libp2p_client/*.yaml",
"mech_client/helpers/p2p_libp2p_client/*.proto",
"mech_client/helpers/p2p_libp2p_client/tests/*",
]
[tool.poetry.dependencies]
python = "^3.10"
open-aea = {version = "^1.53.0", extras = ["cli"]}
open-aea-ledger-ethereum = "^1.53.0"
open-aea-cli-ipfs = "^1.53.0"
open-aea-ledger-cosmos = "^1.53.0"
gql = ">=3.4.1"
asn1crypto = ">=1.4.0,<1.5.0"
websocket-client = ">=0.32.0,<1"
tabulate = "^0.9.0"
[tool.poetry.scripts]
mechx = "mech_client.cli:cli"
[tool.poetry.group.dev.dependencies]
open-autonomy = "^0.14.13"
tomte = {version = "0.2.15", extras = ["tox"]}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"