-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpyproject.toml
62 lines (59 loc) · 1.23 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
60
61
62
[build-system]
requires = [
"marko==2.1.3",
"ruamel.yaml==0.18.10",
"setuptools==79.0.0",
"wheel==0.45.1",
]
[project]
name = "eth2spec"
dynamic = ["version"]
authors = [{ name = "ethereum" }]
description = "Ethereum consensus layer specifications package"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9,<4.0"
dependencies = [
"curdleproofs==0.1.2",
"eth-typing==5.2.1",
"eth-utils==5.3.0",
"lru-dict==1.3.0",
"marko==2.1.3",
"milagro_bls_binding==1.9.0",
"py_arkworks_bls12381==0.3.8",
"py_ecc==7.0.1",
"pycryptodome==3.22.0",
"remerkleable==0.1.28",
"ruamel.yaml==0.18.10",
"setuptools==79.0.0",
"trie==3.1.0",
]
[project.optional-dependencies]
test = [
"pytest-cov==6.1.1",
"pytest-xdist==3.6.1",
"pytest==8.3.5",
]
lint = [
"black==25.1.0",
"codespell==2.4.1",
"mdformat-gfm-alerts==1.0.1",
"mdformat-gfm==0.4.1",
"mdformat-toc==0.3.0",
"mdformat==0.7.22",
"mypy==1.15.0",
"pylint==3.3.6",
]
generator = [
"filelock==3.18.0",
"pathos==0.3.4",
"pytest==8.3.5",
"python-snappy==0.7.3",
]
docs = [
"mdx-truly-sane-lists==1.3",
"mkdocs-awesome-pages-plugin==2.10.1",
"mkdocs-material==9.6.12",
"mkdocs==1.6.1",
]
[tool.black]
line-length = 100