-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.52 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
60
61
62
63
64
65
[tool.poetry]
name = "web3-input-decoder"
version = "0.1.15"
# doc
authors = ["Weiliang Li <to.be.impressive@gmail.com>"]
description = "A simple offline web3 transaction input decoder for functions and constructors"
license = "MIT"
maintainers = ["Weiliang Li <to.be.impressive@gmail.com>"]
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.9"
typing-extensions = {version = ">=4.5.0", python = "<3.11"}
# 3rd party
eth-abi = "^5.0.1"
eth-utils = ">=2.0.0"
pycryptodome = ">=3.18.0"
[tool.poetry.group.dev.dependencies]
ipython = {version = "^9.8.0", python = "^3.11"}
ruff = "^0.14.9"
ty = ">=0.0.1,<0.0.15"
# stubs
eth-typing = "^5.2.1"
[tool.poetry.group.test.dependencies]
pyinstrument = "^5.1.1"
pytest = "^8.4.2"
pytest-cov = "^7.0.0"
[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__.",
'from typing_extensions import NotRequired, TypedDict',
]
[tool.ty.src]
exclude = ["tests/data/*"]