-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (30 loc) · 905 Bytes
/
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
[tool.poetry]
name = "telegram-support-bot"
version = "0.1.0"
description = "An open source python Telegram bot that provides a wide range of features and helps you in organizing technical support for your project/product"
authors = ["Kamil Biktimirov <Biktimirov.kamil@yandex.ru>"]
license = "MIT License"
readme = "README.md"
packages = [{include = "telegram_support_bot"}]
[tool.poetry.dependencies]
python = "^3.11"
python-telegram-bot = "^20.1"
alembic = "^1.10.2"
SQLAlchemy = "^2.0.5.post1"
SQLAlchemy-Utils = "^0.40.0"
python-dotenv = "^1.0.0"
asyncpg = "^0.27.0"
aiosqlite = "^0.18.0"
pytz = "^2022.7.1"
tzlocal = "^4.2"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
mypy = "^1.1.1"
flake8 = "^6.0.0"
pytest = "^7.2.2"
pytest-asyncio = "^0.20.3"
types-tzlocal = "^4.2.2.3"
types-pytz = "^2022.7.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"