-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
63 lines (58 loc) · 1.34 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
[tool.poetry]
name = "stakewise-cli"
version = "1.2"
description = "StakeWise Operator CLI is used to generate and manage ETH2 validator keys."
authors = ["Dmitri Tsumak <[email protected]>"]
license = "AGPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
python-decouple = "==3.6"
web3 = "==5.28.0"
py-ecc = "==5.2.0"
staking-deposit = {git = "https://github.com/ethereum/eth2.0-deposit-cli", rev = "v2.0.0"}
hvac = {version = "==0.11.2", extras = ["parser"]}
gql = {version = "==3.1.0", extras = ["aiohttp"]}
backoff = "==1.11.1"
aiohttp = {version = "==3.8.1", extras = ["speedups"]}
ssz = "==0.2.4"
click = "==8.1.2"
requests-toolbelt = "==0.9.1"
colorama = "==0.4.4"
pycryptodome = "==3.14.1"
psycopg2-binary = "==2.9.3"
PyYAML = "==6.0"
[tool.poetry.dev-dependencies]
mypy = "==0.942"
black = "==22.3.0"
flake8 = "==4.0.1"
isort = "==5.10.1"
flake8-black = "==0.3.2"
flake8-bugbear = "==22.3.23"
pre-commit = "==2.18.1"
pyinstaller = "==4.10"
types-requests = "==2.27.27"
types-PyYAML = "==6.0.8"
Faker = "==13.14.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''