-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.87 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
[project]
name = "multicall"
description = "aggregate results from multiple ethereum contract calls"
requires-python = ">=3.10,<4"
authors = [{ name = "banteg" }]
dynamic = ["version", "dependencies", "readme", "classifiers"]
[tool.setuptools.dynamic.readme]
file = "readme.md"
[tool.setuptools.dynamic.version]
attr = "multicall.__version__"
[tool.setuptools.dynamic.classifiers]
file = "attr:classifiers"
[tool.poetry]
name = "multicall"
version = "0.16.0"
description = "aggregate results from multiple ethereum contract calls"
authors = ["banteg"]
[tool.poetry.dependencies]
python = ">=3.10,<4"
cchecksum = ">=0.0.3,<1"
faster-eth-abi = ">=5.2.16,<6"
web3 = ">=7,<8"
eth_retry = ">=0.3.5"
[tool.poetry.group.dev.dependencies]
pytest = ">=6.2.5"
ruff = ">=0.3.5"
joblib = ">=1.2"
eth-brownie = ">=1.22,<1.23"
aiohttp = { "version" = "*", python = ">=3.10,<4" }
frozenlist = { "version" = "*", python = ">=3.10,<4" }
jsonschema-specifications = { "version" = "*", python = ">=3.10,<4" }
importlib-resources = { "version" = "*", python = ">=3.10,<4" }
multidict = { "version" = "*", python = ">=3.10,<4" }
pkgutil-resolve-name = { "version" = "*", python = ">=3.10,<4" }
pluggy = { "version" = "*", python = ">=3.10,<4" }
protobuf = { "version" = "*", python = ">=3.10,<4" }
pydantic = { "version" = "*", python = ">=3.10,<4" }
referencing = { "version" = "*", python = ">=3.10,<4" }
rpds-py = { "version" = "*", python = ">=3.10,<4" }
urllib3 = { "version" = "*", python = ">=3.10,<4" }
websockets = { "version" = "*", python = ">=3.10,<4" }
yarl = { "version" = "*", python = ">=3.10,<4" }
types-requests = "^2.32.4.20260107"
[build-system]
requires = [
"setuptools",
"wheel",
"mypy[mypyc]==2.1.0",
"tomli>=2.0.0; python_version < '3.11'",
"types-requests",
"eth_retry==0.3.5",
"faster-eth-abi==5.2.29",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100