-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
30 lines (27 loc) · 930 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
[tool.poetry]
name = "waio"
version = "0.0.1"
description = "waio - is a pretty simple and fully asynchronous framework for WhatsApp Business API written in Python 3.7 with asyncio and aiohttp. Used API official Facebook partner - Gupshup.io"
authors = ["dotX12"]
license = "MIT License"
keywords = ["python", "waio", "whatsapp", "asyncio", "aiohttp", "waba", "whats", "app", "bot"]
readme = "README.md"
homepage = "https://github.com/dotX12/waio"
repository = "https://github.com/dotX12/waio"
include = [
"README.md",
"LICENSE.md"
]
[tool.poetry.urls]
Documentation = "https://waio.readthedocs.io/"
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.8.3"
ujson = "5.4.0"
dataclass-factory = "^2.11"
loguru = "^0.5.3"
aioredis = "2.0.0"
magic-filter = "^1.0.9"
[build-system]
requires = ["poetry-core>=1.0.0", "wheel>=0.36,<1.0", "poetry>=1.1,<2", "virtualenv==20.0.33"]
build-backend = "poetry.core.masonry.api"