forked from DmitIv/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 834 Bytes
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
[tool.poetry]
name = "lido-dao-scripts"
version = "0.1.0"
description = "Repository for Lido DAO Aragon voting scripts."
authors = ["Lido devteam"]
license = "MIT"
readme = "README.md"
homepage = "https://mainnet.lido.fi"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
eth-brownie = "1.20.2"
avotes-parser-core = "~0.5.6"
hexbytes = "0.3.1"
ipfs-cid = "^1.0.0"
[tool.poetry.dev-dependencies]
black = "~24.2.0"
pre-commit = "~2.19.0"
pytest-check = "2.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
[tool.pytest.ini_options]
testpaths = [
"tests",
]
filterwarnings = [
"ignore:abi.(decode|encode):DeprecationWarning",
"ignore:rpc.(snapshot|revert):FutureWarning",
]