-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 1.02 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
[tool.poetry]
name = "eth-retry"
version = "0.3.7"
description = "Provides a decorator that automatically catches known transient exceptions that are common in the Ethereum/EVM ecosystem and reattempts to evaluate your decorated function"
authors = ["BobTheBuidler <bobthebuidlerdefi@gmail.com>"]
homepage = "https://github.com/BobTheBuidler/eth_retry"
repository = "https://github.com/BobTheBuidler/eth_retry"
documentation = "https://github.com/BobTheBuidler/eth_retry"
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4"
typing_extensions = ">=4.0.1"
[tool.poetry.group.dev.dependencies]
eth-brownie = "==1.21.0"
joblib = "*"
pytest = "==6.2.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.mypy]
files = ["."]
ignore_missing_imports = true
install_types = true
non_interactive = true
pretty = true
show_error_codes = true
show_error_context = true
strict = true
[tool.pytest.ini_options]
addopts = "-s -v"
testpaths = ["tests"]