forked from eth-infinitism/bundler-spec-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (52 loc) · 1.57 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
[tool.poetry]
name = "bundler-spec-tests"
version = "0.4.0"
description = ""
authors = ["shahafn <shahaflol@gmail.com>"]
readme = "README.md"
packages = [{include = "bundler_spec_tests"}]
[tool.poetry.dependencies]
python = "^3.8"
[tool.black]
line-length = 88
[tool.pylint]
disable = ["C0114", "C0115", "C0116", "W0621"] # missing-module-docstring, redefined-outer-name as it conflicts with pytest fixtures
ignored-classes = ["Error"]
good-names = ["w3", "id", "i", "s"]
good-names-rgxs = ["test_.*"]
max-line-length=120
[tool.pdm]
[tool.pdm.build]
includes = ["bundler_spec_tests"]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pdm.scripts]
update-deps = {shell = "git submodule update --remote --init --recursive && cd @account-abstraction && yarn && yarn compile && cd ../spec && yarn && yarn build"}
test = "pytest --tb=short -rA -W ignore::DeprecationWarning --url http://localhost:3000/rpc --entry-point 0x0576a174D229E3cFA37253523E645A78A0C91B57 --ethereum-node http://127.0.0.1:8545/"
lint = "pylint tests"
format = "black tests"
[project]
name = "bundler-spec-tests"
version = "0.1.0"
description = ""
authors = [
{name = "shahafn", email = "shahaflol@gmail.com"},
]
dependencies = [
"pytest>=7.2.0",
"requests>=2.28.1",
"setuptools>=65.6.0",
"eth-utils>=1.2.0",
"py-solc-x>=1.1.1",
"eth-tester>=0.6.0b6",
"web3>=5.31.1",
"jsonrpcclient>=4.0.2",
"jsonschema>=4.17.3",
"black>=22.12.0",
"pylint>=2.15.8",
]
requires-python = ">=3.8,<3.11"
license = {text = "MIT"}
readme = "README.md"
[project.urls]