-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
56 lines (50 loc) · 911 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "titanoboa-zksync"
version = "0.2.9"
description = "A Zksync plugin for the Titanoboa Vyper interpreter"
license = { file = "LICENSE" }
readme = "README.md"
keywords = [
"ethereum",
"evm",
"smart contract",
"development",
"vyper",
"zksync",
]
classifiers = [
"Topic :: Software Development",
]
dependencies = [
"titanoboa>=0.2.5",
]
[project.optional-dependencies]
forking-recommended = [
"ujson",
]
[build-system]
requires = [
"setuptools",
"wheel",
]
[tool.setuptools.packages.find]
include = [
"boa_zksync*",
]
[tool.setuptools.package-data]
boa_zksync = [
'*.json',
]
[tool.uv]
dev-dependencies = [
"ipython>=8.28.0",
"jupyter-server>=2.14.2",
"nest-asyncio>=1.6.0",
"pytest-xdist>=3.6.1",
"pytest>=8.3.3",
"mypy>=1.13.0",
"pip>=24.3.1",
"black>=24.10.0",
"flake8>=7.1.1",
"isort>=5.13.2",
]