-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (40 loc) · 1.08 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
# generated by DipDup 8.0.0
[tool.poetry]
name = "manutd_indexer"
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.12,<3.13"
# dipdup = ">=8.0.0b5,<9"
dipdup = {git = "https://[email protected]/dipdup-io/dipdup.git", rev = "aux/8.0.0"}
[tool.poetry.group.dev.dependencies]
black = "*"
ruff = "*"
mypy = "*"
[tool.black]
line-length = 140
target-version = ['py312']
skip-string-normalization = true
extend-exclude = "manutd_indexer"
[tool.ruff]
line-length = 140
target-version = 'py312'
[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.12"
plugins = ["pydantic.mypy"]
strict = false
exclude = "manutd_indexer"
[tool.mypy-ruamel.yaml]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"