-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
42 lines (37 loc) · 1023 Bytes
/
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
[tool.poetry]
name = "eth-validator-watcher"
version = "1.0.0-beta.1"
description = "Ethereum Validator Watcher"
authors = ["Manu NALEPA <emmanuel.nalepa@kiln.fi>, Sébastien Rannou <mxs@kiln.fi>"]
readme = "README.md"
packages = [{include = "eth_validator_watcher"}]
[tool.poetry.dependencies]
python = "^3.12"
more-itertools = "^9.1.0"
prometheus-client = "^0.17.0"
pydantic = "^2.0"
requests = "^2.31.0"
typer = "^0.9.0"
slack-sdk = "^3.21.3"
tenacity = "^8.2.2"
pyyaml = "^6.0.1"
pydantic-yaml = "^1.2.0"
pydantic-settings = "^2.1.0"
cachetools = "^5.3.3"
pybind11 = "^2.12.0"
vcrpy = "^6.0.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"
black = "^23.3.0"
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
requests-mock = "^1.10.0"
freezegun = "^1.2.2"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[build-system]
requires = ["poetry-core", "pybind11", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
eth-validator-watcher = "eth_validator_watcher.entrypoint:app"