forked from IntegroLabs/hicdex
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
58 lines (51 loc) · 1.31 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
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "hicdex"
version = "1.3.0"
description = "an indexer for hicetnunc objkts based on dipdup by Baking Bad"
license = " AGPL-3.0"
authors = [
"marchingsquare <[email protected]>"
]
readme = "README.md"
packages = [
{ include = "hicdex", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
dipdup = "6.0.0"
# dipdup = {path = "../dipdup", develop = true}
# dipdup = {git = "https://github.com/dipdup-net/dipdup-py.git", branch = "feat/db-rollback"}
hashids = "^1.3.1"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
bump2version = "^1.0.1"
diff-cover = "^6.5.0"
flake8-return = "^1.1.3"
flake8-comprehensions = "^3.8.0"
flake8-bugbear = "^22.1.11"
flake8-simplify = "^0.19.2"
flakeheaven = "^1.0.1"
isort = "^5.9.3"
mypy = "^0.960"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
pytest-xdist = "^2.5.0"
types-pytz = "^2021.1.2"
types-tabulate = "^0.8.2"
[tool.isort]
line_length = 120
[tool.black]
line-length = 120
target-version = ['py310']
skip-string-normalization = true
[tool.flakeheaven]
format = "colored"
max_line_length = 140
show_source = true
extended_default_ignore = []
[tool.flakeheaven.plugins]
"flake8-*" = ["+*", "-C417", "-SIM106", "-SIM114", "-SIM102"]
flake8-docstrings = ["-*"]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"