forked from cdump/evmole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (33 loc) · 874 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
29
30
31
32
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "evmole"
version = "0.2.1"
description = "Extracts function selectors and arguments from EVM bytecode"
authors = ["Maxim Andreev <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/cdump/evmole"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = {version = "^3.9.0", optional = true}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
black = "^23.11.0"
mypy = "^1.7.1"
ruff = "^0.1.6"
[tool.poetry.extras]
benchmark = ["aiohttp"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 130
target-version = ["py311"]
skip-string-normalization = true
[tool.ruff]
extend-select = ["B", "Q"]
line-length = 130
target-version = "py311"
[tool.ruff.flake8-quotes]
inline-quotes = "single"
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]