forked from dipdup-io/dipdup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
110 lines (95 loc) · 2.45 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[tool.poetry]
name = "dipdup"
description = "Modular framework for creating selective indexers and featureful backends for dapps"
version = "6.3.0"
license = "MIT"
authors = [
"Lev Gorodetskiy <[email protected]>",
"Michael Zaikin <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/dipdup-io/dipdup"
homepage = "https://dipdup.io/"
keywords = ['tezos', 'blockchain', 'sdk', 'michelson', 'indexers', 'tzkt', 'cryptocurrencies', 'smart-contracts']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
packages = [
{ include = "dipdup", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
asyncpg = "0.26.0"
datamodel-code-generator = "0.13.1"
pydantic = "1.9.2"
pysignalr = "0.1.2"
tortoise-orm = "0.19.2"
aiohttp = "^3.8.1"
aiolimiter = "^1.0.0-beta.1"
anyio = "^3.3.2"
APScheduler = "^3.8.0"
asyncclick = "^8.0.1"
orjson = "^3.6.6"
prometheus-client = "^0.14.1"
pyhumps = "^3.0.2"
python-dotenv = "^0.19.0"
"ruamel.yaml" = "^0.17.2"
sentry-sdk = "^1.4.3"
sqlparse = "^0.4.2"
tabulate = "^0.8.9"
pytezos = {version = "3.7.1", optional = true}
[tool.poetry.group.dev.dependencies]
blue = "*"
bump2version = "*"
diff-cover = "*"
docker = "*"
flake8-comprehensions = "*"
flake8-bugbear = "*"
flakeheaven = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
pytest-xdist = "*"
Sphinx = "*"
sphinx-click = "*"
sphinx-markdown-builder = "*"
types-pytz = "*"
types-tabulate = "*"
[tool.poetry.extras]
pytezos = ["pytezos"]
[tool.poetry.scripts]
dipdup = "dipdup.cli:cli"
dipdup-install = "dipdup.install:cli"
[tool.isort]
line_length = 120
force_single_line = true
[tool.blue]
line-length = 120
target-version = ["py310"]
[tool.flakeheaven]
max_line_length = 120
[tool.flakeheaven.plugins]
"*" = ["+*"]
pycodestyle = ["-*"]
[tool.mypy]
python_version = "3.10"
plugins = ["pydantic.mypy"]
[[tool.mypy.overrides]]
module = "ruamel"
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"