Spaces:
Runtime error
Runtime error
File size: 925 Bytes
46252cd | 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 | [build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rmyndharis-openwa"
version = "0.1.0"
description = "Official Python SDK for OpenWA WhatsApp API Gateway"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [
{ name = "OpenWA Contributors" }
]
keywords = ["whatsapp", "api", "sdk", "openwa", "gateway"]
dependencies = [
"httpx>=0.25.0,<1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.23",
]
[project.urls]
Homepage = "https://github.com/rmyndharis/OpenWA"
Repository = "https://github.com/rmyndharis/OpenWA"
[tool.setuptools.packages.find]
include = ["openwa*"]
# Ship type information (PEP 561) so consumers get the bundled type hints.
[tool.setuptools.package-data]
openwa = ["py.typed"]
"openwa.resources" = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|