-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (37 loc) · 999 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
44
45
[tool.poetry]
name = "rarible-marketplace-indexer"
version = "0.1.0"
description = "DipDup indexer for Rarible marketplaces orders in Tezos"
authors = ["Igor Sereda <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "~3.10"
dipdup = {git = "https://github.com/dipdup-net/dipdup-py.git", branch = "feat/token-index"}
aiokafka = "^0.7.2"
base58 = "^2.1.1"
[tool.poetry.dev-dependencies]
ssort = "^0.11.5"
mypy = "^0.950"
isort = "^5.10.1"
flakeheaven = "^0.11.1"
pytest = "^7.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
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 = ["py310"]
skip-string-normalization = true
[tool.flakeheaven]
format = "colored"
max_line_length = 140
show_source = true
extended_default_ignore = []
[tool.flakeheaven.plugins]
pyflakes = ["+*"]
pycodestyle = ["+*", "-E203"]