-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
49 lines (43 loc) · 1.01 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
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
[tool.poetry]
name = "pyth-observer"
version = "0.3.2"
description = "Alerts and stuff"
authors = []
readme = "README.md"
packages = [{ include = "pyth_observer" }]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "<4.0.0a1"
arrow = "^1.2.3"
base58 = "^2.1.1"
click = "^8.1.3"
datadog-api-client = { extras = ["async"], version = "^2.5.0" }
loguru = "^0.6.0"
more-itertools = "^9.0.0"
prometheus-client = "0.15.0"
pycoingecko = "2.2.0"
pythclient = "^0.1.24"
pyyaml = "^6.0"
throttler = "1.2.1"
types-pyyaml = "^6.0.12"
types-pytz = "^2022.4.0.0"
python-dotenv = "^1.0.1"
numpy = "^2.1.3"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
ipdb = "^0.13.9"
isort = "^5.10.1"
pyflakes = "^2.5.0"
pyright = "^1.1.278"
pytest = "^7.1.3"
pytest-asyncio = "^0.19.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
[tool.poetry.scripts]
pyth-observer = "pyth_observer.cli:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"