-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.14 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
[tool.poetry]
name = "multiproof"
version = "v0.1.10"
description = "A Python library to generate merkle trees and merkle proofs."
authors = ["StakeWise Labs <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/stakewise/multiproof"
keywords = ["merkle-tree", "multiproof"]
packages = [
{ include = "multiproof" },
]
[tool.poetry.dependencies]
python = "^3.10"
eth-abi = "^5.0.1"
eth-utils = ">=5.1.0"
eth-hash = {extras = ["pycryptodome"], version = "^0.7.0"}
[tool.poetry.group.dev.dependencies]
pylint = "^2.14.5"
mypy = "^0.971"
pytest = "^7.1.2"
pre-commit = "^2.20.0"
Flake8-pyproject = "^1.1.0"
isort = "==5.12.0"
[tool.bandit]
exclude_dirs = ["*/tests/*", "src/config/networks.py"]
[tool.pylint."pre-commit-hook"]
disable=["C0103", "C0114", "C0115", "C0116", "R0801", "R0903", "W0703", "W1514"]
[tool.pylint."BASIC"]
good-names = ["db", "i", "el", "e", "w", "f", "w3"]
[tool.flake8]
max-line-length = 88
select = ["E121"]
[tool.mypy]
ignore_missing_imports = true
python_version = "3.10"
disallow_incomplete_defs = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"