-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
64 lines (59 loc) · 1.44 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
60
61
62
63
64
[tool.poetry]
name = "dank-mids"
version = "4.20.113"
description = "Multicall batching middleware for asynchronous scripts using web3.py"
authors = ["BobTheBuidler <bobthebuidlerdefi@gmail.com>"]
homepage = "https://github.com/BobTheBuidler/dank_mids"
repository = "https://github.com/BobTheBuidler/dank_mids"
documentation = "https://BobTheBuidler.github.io/dank_mids"
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
aiofiles = "*"
cchecksum = ">=0.0.3,<1"
eth-retry = ">=0.1.15,<1"
evmspec = ">=0.2,<1"
ez-a-sync = ">=0.24.44,<1"
multicall = ">=0.6.2,<1"
typed-envs = ">=0.0.8,<0.1"
web3 = ">=5.27,!=5.29.*,!=5.30.*,!=5.31.1,!=5.31.2,<8"
[tool.poetry.group.dev.dependencies]
eth-brownie = [
{version = ">=1.16,<1.20", python = ">=3.8,<3.10"},
{version = ">=1.20.3", python = ">=3.10,<4"}
]
pytest = "*"
pytest-asyncio-cooperative = "*"
pytest-cov = "*"
pytest-sugar = "*"
# need this to resolve brownie locally, didn't before
importlib-resources = ">=6.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
exclude = ["build/","cache/","env/","tests/"]
ignore_missing_imports = true
check_untyped_defs = true
disable_error_code = ["return"]
[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| cache
| docs
| dist
| env
)/
'''