-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
49 lines (43 loc) · 1.73 KB
/
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
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name="whatsapp-python"
authors = [{name="Filippo Romani", email="[email protected]"}]
description="Open source Python wrapper for the WhatsApp Cloud API"
readme = "README.md"
requires-python = ">=3.10"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Customer Service",
"Intended Audience :: Education",
"Intended Audience :: Telecommunications Industry",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Communications :: Chat",
"Topic :: Communications :: Telephony",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = [
"version"
]
dependencies = ["fastapi", "uvicorn", "requests_toolbelt", "requests", "python-dotenv", "BeautifulSoup4"]
[project.urls]
Homepage = "https://github.com/filipporomani/whatsapp-python"
Docs = "https://github.com/filipporomani/whatsapp-python/wiki"
"Issues Reporting" = "https://github.com/filipporomani/whatsapp-python/issues"
Download = "https://github.com/filipporomani/whatsapp-python/releases/latest"
Changelog = "https://github.com/filipporomani/whatsapp-python/releases"
[tool.hatch.version]
path = "whatsapp/constants.py"
variable = "VERSION"
[tool.hatch.build.targets.wheel]
packages = ["whatsapp"]