-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "subsquid-eth-archive"
description = "Subsquid stage 2 ingester and worker"
version = "0.1.0"
authors = [{name = "Subsquid Labs GmbH", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"duckdb==0.10.3",
"httpx == 0.*",
"prometheus-client==0.17.*",
"pyarrow == 15.*",
"s3fs >= 2023.12.0",
"sentry-sdk == 1.28.*",
"uvloop>=0.19.0",
]
[project.optional-dependencies]
writer = [
"pycryptodome>=3.18.0",
"trie==2.1.1",
"rlp>=3.0.0",
"setuptools>=68.2.2",
"base58>=2.1.1",
"eth-keys==0.5.0",
"coincurve==20.0.0",
]
http-worker = [
"falcon == 3.*",
"marshmallow == 3.*",
"uvicorn == 0.*",
"psutil>=5.9.5",
]
p2p-worker = [
"base58>=2.1.1",
"grpcio == 1.*",
"marshmallow == 3.*",
"protobuf == 4.*",
"psutil>=5.9.5",
"setuptools>=68.2.2",
"web3>=6.11.3",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
dev = [
"locust>=2.15.1",
"pyarrow-stubs>=10.0.1.7",
]