-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
28 lines (24 loc) · 893 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
[tool.poetry]
name = "erc6492_signature_verifier"
version = "0.2.1"
description = "A Python library for verifying Ethereum signatures in compliance with EIP-6492, supporting both smart contracts and externally owned accounts (EOA)."
authors = ["Sajad <SajadSolidity@gmail.com>"]
license = "mit"
readme = "README.md"
packages = [{ include = "erc6492_signature_verifier" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/Sajad-Salehi/EIP6492-Signature-Verifier"
Issues = "https://github.com/Sajad-Salehi/EIP6492-Signature-Verifier/issues"
[tool.poetry.dependencies]
python = "^3.9"
web3 = "^6.20.1"
safe-pysha3 = "^1.0.4"
[tool.poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"