-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 913 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
43
# Generated by DipDup 7.5.2
[tool.poetry]
name = "dipdup_indexer_dex_test_2"
version = "0.0.1"
description = "A blockchain indexer built with DipDup"
license = "MIT"
authors = [
"John Doe <[email protected]>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
dipdup = ">=7,<8"
[tool.poetry.group.dev.dependencies]
black = "*"
ruff = "*"
mypy = "*"
[tool.black]
line-length = 120
target-version = ['py311']
skip-string-normalization = true
[tool.ruff]
line-length = 120
target-version = 'py311'
[tool.ruff.lint]
extend-select = ["B", "C4", "FA", "G", "I", "PTH", "Q", "RET", "RUF", "TCH", "UP"]
flake8-quotes = { inline-quotes = "single", multiline-quotes = "double" }
isort = { force-single-line = true}
[tool.mypy]
python_version = "3.11"
plugins = ["pydantic.mypy"]
strict = false
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"