-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (32 loc) · 1020 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
34
35
36
37
38
39
[tool.poetry]
name = "whatsapp-framework"
version = "0.5.00"
description = "Whatsapp framework simplifies building and deploying whatsapp based application"
authors = ["Damian Akpan <[email protected]>"]
readme = "README.md"
keywords = ["whatsapp", "chatbot"]
repository = "https://github.com/raven-consult/whatsapp_framework"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "whatsapp" }
]
[tool.poetry.dependencies]
python = ">=3.9"
pyngrok = "^7.2.0"
requests = "^2.32.3"
pydantic = "^2.9.1"
werkzeug = "^3.0.4"
google-generativeai = "^0.8.3"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.43"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"