-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.79 KB
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
50
51
52
53
54
55
56
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wasenderapi"
dynamic = ["version"]
authors = [
{ name = "YonkoSam", email = "absamlani@gmail.com" },
]
description = "The official Python SDK for the Wasender API, allowing you to programmatically send WhatsApp messages, manage contacts, groups, sessions, and handle webhooks."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["whatsapp", "api", "sdk", "wasender", "messaging", "chatbot"]
dependencies = [
"httpx>=0.25.0,<0.29.0",
"pydantic>=2.5.0,<3.0.0",
"requests>=2.31.0,<3.0.0",
]
[project.urls]
"Homepage" = "https://github.com/YonkoSam/wasenderapi-python"
"Documentation" = "https://github.com/YonkoSam/wasenderapi-python/tree/main/docs"
"Repository" = "https://github.com/YonkoSam/wasenderapi-python"
"Bug Tracker" = "https://github.com/YonkoSam/wasenderapi-python/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0,<8.0.0",
"pytest-asyncio>=0.20.0,<0.24.0",
"pytest-cov>=4.1.0,<5.0.0",
"pytest-mock>=3.12.0,<4.0.0",
"respx>=0.20.0,<0.21.0",
"mypy>=1.0.0,<2.0.0",
"ruff>=0.1.0,<0.2.0",
"pre-commit>=3.0.0,<4.0.0",
"flake8>=6.0.0,<7.0.0"
]
[tool.hatch.version]
path = "wasenderapi/_version.py"