-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
60 lines (52 loc) · 1.39 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
[tool.poetry]
name = "web3-input-decoder"
version = "0.1.14"
# doc
authors = ["Weiliang Li <[email protected]>"]
description = "A simple offline web3 transaction input decoder for functions and constructors"
license = "MIT"
maintainers = ["Weiliang Li <[email protected]>"]
readme = "README.md"
repository = "https://github.com/kigawas/web3-input-decoder"
# tags
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
]
keywords = [
"ethereum",
"web3",
]
# package data: PEP-561
include = ["web3_input_decoder/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"
# 3rd party
eth-abi = "^5.0.1"
eth-utils = ">=2.0.0"
pycryptodome = ">=3.18.0"
[tool.poetry.group.dev.dependencies]
ipython = {version = "^8.29.0", python = "^3.10"}
mypy = "^1.13.0"
ruff = "^0.7.4"
# stubs
eth-typing = "^5.0.1"
[tool.poetry.group.test.dependencies]
pyinstrument = "^5.0.0"
pytest = "^8.3.3"
pytest-cov = {version = "^6.0.0", python = "^3.9"}
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.pytest.ini_options]
addopts = "--cov=web3_input_decoder"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"@abstract",
"raise NotImplementedError",
"if __name__ == .__main__.",
]