-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
53 lines (48 loc) · 1.03 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
[tool.poetry]
name = "oracle"
version = "3.3.1"
description = "StakeWise Oracles are responsible for submitting off-chain data."
authors = ["Dmitri Tsumak <[email protected]>"]
license = "AGPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = "==3.10.10"
python-decouple = "==3.6"
web3 = "==5.31.0"
py-ecc = "==5.2.0"
gql = {version = "3.4.0", extras = ["aiohttp"]}
backoff = "2.1.2"
aiohttp = {version = "==3.8.1", extras = ["speedups"]}
boto3 = {version = "==1.22.1", extras = ["awscrt"]}
sentry-sdk = "1.9.5"
[tool.poetry.dev-dependencies]
mypy = "==0.950"
black = "==22.3.0"
isort = "==5.10.1"
pre-commit = "==2.18.1"
pytest = "==7.1.1"
pytest-asyncio = "==0.18.3"
Faker = "==13.6.0"
flake8-pyproject = "==1.2.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''