-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.55 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
[project]
name = "kwtsms"
version = "0.7.40"
description = "Python client for kwtSMS, the Kuwait SMS gateway trusted by top businesses to deliver messages worldwide, with private Sender ID, free API testing, and non-expiring credits."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
keywords = ["sms", "kwtsms", "kuwait", "sms-gateway", "otp"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Telephony",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = []
[project.optional-dependencies]
async = ["aiohttp>=3.8"]
[project.urls]
Homepage = "https://kwtsms.com"
Repository = "https://github.com/boxlinknet/kwtsms-python"
Documentation = "https://github.com/boxlinknet/kwtsms-python/tree/master/examples"
Changelog = "https://github.com/boxlinknet/kwtsms-python/blob/master/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/kwtsms"]
[dependency-groups]
dev = [
"aiohttp>=3.10.11",
"pytest-asyncio>=0.24.0",
"pytest>=7.0",
]
[tool.pytest.ini_options]
asyncio_mode = "strict"