-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.03 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
[tool.poetry]
name = "chainbench"
version = "0.8.3"
description = ""
authors = [
"Egor Molodik <[email protected]>",
"Erwin Wee <[email protected]>"
]
maintainers = ["Erwin Wee <[email protected]>"]
readme = "README.md"
packages = [{include = "chainbench"}]
[tool.poetry.dependencies]
python = "^3.10"
locust = "^2.32.0"
click = "^8.1.6"
locust-plugins = {extras = ["dashboards"], version = "^4.5.3"}
tenacity = "^9.0.0"
base58 = "^2.1.1"
solders = "^0.22.0"
websocket-client = "^1.8.0"
orjson = "^3.10.10"
wsaccel = "^0.6.7"
[tool.poetry.group.dev.dependencies]
black = ">=23.1,<25.0"
mypy = "^1.2.0"
pre-commit = "^3.2.2"
flake8 = "^6.0.0"
isort = "^5.12.0"
flake8-pyproject = "^1.2.3"
[tool.poetry.scripts]
chainbench = "chainbench.main:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 120
extend-ignore = ['E203']
[tool.black]
line-length = 120