-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.48 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "staking-sdk-py"
dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [{ name = "John Bergschneider", email = "jhb10c@protonmail.com" }]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"blake3>=0.8.0",
"eth-keys>=0.7.0",
"py-ecc>=5.2.0",
"eth-abi>=5.2.0",
"web3>=6.0.0",
"rich>=14.1.0",
"toml>=0.10.2",
"eth-account>=0.13.7",
"ledgereth>=0.10.0",
"eth-typing>=5.2.1",
"eth-utils>=5.3.1",
]
[project.urls]
[tool.hatch.version]
path = "src/staking_sdk_py/__about__.py"
[tool.hatch.envs.types]
extra-dependencies = ["mypy>=1.0.0"]
[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive {args:src/staking_sdk_py tests}"
[tool.coverage.run]
source_pkgs = ["staking_sdk_py", "tests"]
branch = true
parallel = true
omit = ["src/staking_sdk_py/__about__.py"]
[tool.coverage.paths]
staking_sdk_py = ["src/staking_sdk_py", "*/staking-sdk-py/src/staking_sdk_py"]
tests = ["tests", "*/staking-sdk-py/tests"]
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
[tool.hatch.build.targets.wheel]
packages = ["src/staking_sdk_py"]