forked from aws-samples/eth-keygen-lambda-sam
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (34 loc) · 819 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
[tool.poetry]
name = "eth2-keygen-sam"
version = "0.1.0"
description = ""
authors = ["Aldred Benedict <[email protected]>"]
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = "^3.9"
cached-property = "1.5.2"
click = "8.1.3"
cytoolz = "0.11.2"
eth-hash = "0.3.2"
eth-typing = "2.3.0"
eth-utils = "1.10.0"
lru-dict = "1.1.7"
mypy-extensions = "0.4.3"
py-ecc = "5.2.0"
pycryptodome = "3.14.1"
pyrsistent = "0.16.1"
six = "1.16.0"
ssz = "0.2.4"
toolz = "0.11.2"
staking-deposit = {git = "https://github.com/ethereum/staking-deposit-cli.git", rev = "v2.3.0"}
boto3 = "^1.26.9"
botocore = "^1.29.10"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
cfn-lint = "^0.71.1"
bandit = "^1.7.4"
black = "^22.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"