-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
129 lines (120 loc) · 2.57 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[build-system]
requires = ["hatchling==1.27.0", "hatch-vcs==0.4.0"]
build-backend = "hatchling.build"
[project]
name = "pysmsboxnet"
dynamic=["version"]
authors = [
{name = "Patrick ZAJDA", email = "[email protected]"}
]
description = "Client to send SMS using www.smsbox.net API"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["smsbox", "api", "sms"]
license = {text = "MIT license"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Framework :: AsyncIO",
"Framework :: aiohttp",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications",
"Topic :: Communications :: Telephony",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"aiohttp>=3.8.0,<4.0",
]
[project.optional-dependencies]
doc = [
"Sphinx==8.1.3",
"furo==2024.8.6",
]
lint = [
"mypy==1.14.1",
"pre-commit==4.0.1",
]
test = [
"aresponses==3.0.0",
"coverage==7.6.10",
"pytest==8.3.4",
"pytest-asyncio==0.25.2",
"pytest-cov==6.0.0",
]
ci = [
"hatch-vcs==0.4.0"
]
[project.urls]
"Source code" = "https://github.com/Nardol/pysmsboxnet"
"Bug tracker" = "https://github.com/Nardol/pysmsboxnet/issues"
"Documentation" = "https://nardol.github.io/pysmsboxnet/stable"
"SMSBox API 1.1 doc" = "https://en.smsbox.net/docs/doc-API-SMSBOX-1.1-EN.html"
"SMSBox account API doc" = "https://en.smsbox.net/docs/doc-APIFunctions-SMSBOX-FR.html"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/pysmsboxnet/_version.py"
[tool.hatch.build]
exclude = [
".github",
"codecov.yml",
"example.py",
"script",
".pre-commit-config.yaml "
]
[tool.ruff]
extend-exclude = [
".venv",
".git",
".tox",
"docs",
"venv",
"bin",
"lib",
"deps",
"build",
"src/pysmsboxnet/_version.py",
]
[tool.ruff.lint]
ignore = [
"D203",
"D213",
"E501",
]
extend-select = [
"A",
"ASYNC",
"B",
"C",
"C416",
"C9",
"D",
"E",
"F",
"I",
"N",
"PL",
"PLC",
"PLE",
"PLR",
"PLW",
"RUF",
"UP",
"W",
]
mccabe = {max-complexity = 25}
[tool.pytest.ini_options]
testpaths = [
"tests",
]
norecursedirs = [
".git",
]
asyncio_mode = "auto"