-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.2 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
[project]
name = "eth-validator-watcher"
version = "1.0.0-beta.4"
description = "Ethereum Validator Watcher"
authors = [
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"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",
"flake8>=7.2.0",
]
[project.optional-dependencies]
dev = [
"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"
]
[build-system]
requires = ["setuptools>=61.0", "pybind11>=2.12.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
eth-validator-watcher = "eth_validator_watcher.entrypoint:app"
[tool.setuptools]
packages = ["eth_validator_watcher"]
include-package-data = true
# Custom build script needs to be handled differently with setuptools
[tool.custom]
build-script = "build.py"