-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
41 lines (37 loc) · 1.06 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
[tool.poetry]
name = "voltaire_bundler"
version = "v0.1.0-alpha.36"
description = "EIP-4337 python Bundler"
authors = ["Candide Wallet Team"]
license = "LGPL"
readme = "README.md"
homepage = "https://github.com/candidelabs/voltaire"
repository = "https://github.com/candidelabs/voltaire"
keywords = ["4337", "account_abstraction", "ethereum", "bundler"]
classifiers = [
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
]
[tool.poetry.dependencies]
python = "^3.12"
uvloop = "^0.19.0"
eth-abi = "^5.1.0"
eth-account = "^0.13.0"
prometheus-client = "^0.20.0"
aiohttp-cors = "^0.7.0"
aiohttp = "^3.9.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
docker = "^6.1.3"
mypy = "^1.6.1"
flake8 = "^6.1.0"
flake8-bugbear = "^23.9.16"
[tool.poetry.scripts]
build_p2p = "scripts.build_p2p:build"
lint = "scripts.lint:start"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"