-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (96 loc) · 2.86 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (96 loc) · 2.86 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["uv_build>=0.11.2,<0.12.0"]
build-backend = "uv_build"
[project]
name = "trader"
version = "0.1.0"
description = ""
requires-python = "<3.15,>=3.10"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"open-autonomy[cli]==0.21.26",
"open-aea-ledger-ethereum==2.2.9",
"open-aea-ledger-cosmos==2.2.9",
"open-aea-test-autonomy==0.21.26",
"open-aea-helpers==0.21.26",
"open-aea-cli-ipfs==2.2.9",
"grpcio==1.78.0",
"hypothesis==6.21.6",
"hexbytes==1.3.0",
"eth-utils==5.3.0",
"eth-abi==5.2.0",
"pytest==8.4.2",
"pytest-asyncio==1.3.0",
"openapi-core==0.22.0",
"pyinstaller==6.19.0",
"google-generativeai==0.8.2",
"py_clob_client_v2==1.0.1",
"py-builder-relayer-client==0.0.1",
"multiaddr==0.0.9",
"requests==2.32.5",
"aiohttp==3.13.4",
"asn1crypto==1.4.0",
"web3==7.15.0",
"protobuf==5.29.6",
"jsonschema==4.23.0",
"openapi-spec-validator==0.7.2",
"typing_extensions==4.15.0",
"ecdsa==0.19.2",
"pydantic==2.12.5",
"httpx==0.28.1",
"certifi==2026.2.25",
"multidict==6.7.1",
"eth_typing==6.0.0",
"w3multicall==0.3.1",
"filelock==3.25.2",
"poly_eip712_structs==0.0.1",
"setuptools==81.0.0",
# Pinned via git rev in [tool.uv.sources].
"py-builder-signing-sdk",
# cffi 2.1.0 reports its license as MIT-0 (was MIT), which tomte's
# PARANOID liccheck rejects. Constrain to the previous minor until
# the tomte allowlist covers MIT-0. See [tool.uv].override-dependencies
# for the transitive-resolution counterpart.
"cffi<2.1.0",
]
[project.urls]
Repository = "https://github.com/valory-xyz/trader"
[dependency-groups]
dev = [
"tomte[cli, tests] @ git+https://github.com/valory-xyz/tomte.git@v0.7.0",
]
[tool.uv]
default-groups = "all"
prerelease = "allow"
# cffi 2.1.0 (transitive via cryptography << open-aea-ledger-solana)
# reports its license as MIT-0, which tomte's PARANOID liccheck rejects.
# Constrain to the previous minor until the tomte allowlist covers MIT-0.
override-dependencies = ["cffi<2.1"]
[tool.uv.sources]
py-builder-signing-sdk = { git = "https://github.com/LOCKhart07/py-builder-signing-sdk.git", rev = "487579780479676d20867ead63db968bf460ea38" }
[tool.tomte]
check_dependencies_extra_excludes = [
"eth-account",
"typing-extensions",
"py-order-utils",
"py_builder_signing_sdk",
"py-ecc",
"werkzeug",
"attrs",
"python-dateutil",
"urllib3",
]
upstream_pins = [
"valory-xyz/mech-interact@v0.32.7",
"valory-xyz/mech@v0.34.2-rc2",
"valory-xyz/genai@v7.2.2",
"valory-xyz/kv-store@v0.7.1",
"valory-xyz/funds-manager@v3.1.2",
"valory-xyz/omen-protocol@v0.1.3",
]
gitleaks_extra_paths = ["ui-build/.*"]
tomte_dep_pin = " @ git+https://github.com/valory-xyz/tomte.git@v0.7.0"
[tool.uv.build-backend]
module-name = ["packages"]
module-root = ""