-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
66 lines (59 loc) · 1.26 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
65
66
[tool.poetry]
name = "depositor-bot"
version = "5.0.0"
description = "Bot that collects council signatures, checks blockchain state and signatures and do deposits. Also pause bot send pause tx if there is security warning."
authors = ["Raman <[email protected]>"]
license = "MIT License"
readme = "README.md"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = "1.26.4"
prometheus-client = "0.20.0"
web3-multi-provider = "^0.6.0"
schema = "^0.7.5"
websocket-client = "^1.4.1"
confluent-kafka = "^2.2.0"
web3 = "^6.10.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.4"
pytest = "^8.2.0"
pytest-cov = "^5.0.0"
pyright = "^1.1.362"
pre-commit = "^3.8.0"
[tool.pytest.ini_options]
pythonpath = [
"src",
"tests",
]
markers = [
"unit", # offline
"integration", # hardhat fork
"integration_holesky", # holesky fork
"integration_chiado", # chiado(gnosis testnet) run only
]
[tool.ruff]
line-length = 140
[tool.ruff.lint]
extend-select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
docstring-code-format = true
[tool.pyright]
include = ["src"]