-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 967 Bytes
/
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
[tool.poetry]
name = "Tezos to Etherlink Bridge Indexer"
version = "0.1.0"
description = ""
authors = ["Igor Sereda <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
dipdup = {git = "https://github.com/dipdup-io/dipdup.git", rev="61553818"}
base58 = "^2.1.1"
pytezos = "^3.13.3"
pydantic-settings = "^2.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
ruff = "^0.1.15"
ssort = "^0.12.4"
isort = "^5.13.2"
mypy = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
line_length = 140
force_single_line = true
group_by_package = true
ensure_newline_before_comments = true
[tool.black]
line-length = 140
target-version = ['py312']
skip-string-normalization = true
[tool.ruff]
line-length = 140
ignore = ["E501", "B905"]
target-version = "py312"
extend-select = ["B", "C4", "Q"]
flake8-quotes = {inline-quotes = "single", multiline-quotes = "single"}