-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (64 loc) · 1.21 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
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "py-helpers"
version = "0.1.0"
description = "scripts designed to expedite the setup of new environments and streamline various tasks"
readme = "README.md"
requires-python = ">=3.12.7"
dependencies = [
# development tools
"uv",
"ruff",
"cython",
"cytoolz",
"toolz",
"setuptools",
"wheel",
"python-dev-tools",
"snakeviz",
# networking and http
"requests",
"urllib3",
"aiohttp",
"httpx[http2]",
"uvicorn[standard]",
"click",
"certifi",
"idna",
"charset-normalizer",
"aiosignal",
"async-timeout",
"frozenlist",
# async programming
"asyncio",
"tornado",
# ethereum and blockchain
"web3",
"flashbots",
"eth-account",
"eth-typing",
"eth-utils",
"eth-hash",
"multicall",
# data processing and analysis
"numpy",
"pandas",
"pyarrow",
"sqlalchemy",
"tables",
# utilities and helpers
"lru-cache",
"multidict",
"pydantic",
"pyyaml",
"rich",
"tqdm",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"