forked from ethereum/staking-deposit-cli
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
44 lines (38 loc) · 909 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
43
44
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ethstaker_deposit"]
[tool.setuptools.dynamic]
version = {attr = "ethstaker_deposit.__version__"}
[tool.pip-tools]
generate-hashes = true
no-annotate = true
[project]
name = "ethstaker_deposit"
description = "Secure key generation for deposits"
readme = "README.md"
dependencies = [
"click",
"eth-typing",
"eth-utils",
"pycryptodome",
"pyperclip",
"py-ecc",
"ssz"
]
requires-python = ">=3.9,<4"
dynamic = ["version"]
[project.optional-dependencies]
test = [
"exceptiongroup", # pip-compile did not pick up from mypy
"flake8",
"jsonschema",
"mypy",
"pytest",
"pytest-asyncio",
"coverage",
"tomli" # pip-compile did not pick up from mypy
]
[project.urls]
"Homepage" = "https://github.com/eth-educators/ethstaker-deposit-cli"