unicheckbot/apps/tgbot/pyproject.toml

30 lines
613 B
TOML
Raw Normal View History

2021-01-03 00:56:55 +03:00
[tool.poetry]
name = "tgbot"
version = "0.1.0"
description = "Telegram bot"
authors = ["kiriharu <kiriharu@yandex.ru>"]
[tool.poetry.dependencies]
python = "^3.8"
2021-01-30 13:01:05 +03:00
core = {path = "../core"}
2021-01-03 00:56:55 +03:00
aiogram = "^2.11.2"
httpx = "^0.16.1"
2021-01-04 00:45:32 +03:00
python-whois = "^0.7.3"
2021-01-05 20:23:28 +03:00
aioinflux = "^0.9.0"
loguru = "^0.5.3"
2021-01-14 00:37:57 +03:00
whois-vu = "^0.3.0"
2021-01-30 13:01:05 +03:00
tortoise-orm = "^0.16.20"
2021-01-30 13:34:08 +03:00
aiomysql = "^0.0.21"
2021-03-31 11:33:57 +03:00
sentry-sdk = "^1.0.0"
aiocontextvars = "^0.2.2"
2021-01-03 00:56:55 +03:00
[tool.poetry.dev-dependencies]
2021-02-20 18:24:39 +03:00
pytest = "^6.2.2"
flake8 = "^3.8.4"
2021-01-03 00:56:55 +03:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2021-02-21 13:14:55 +03:00
[tool.poetry.scripts]
tgbot = "tgbot.bot:main"