-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (69 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (69 loc) · 2.03 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "simplepush"
version = "3.0.0"
description = "Python client for Simplepush (tasks, notifications, events, end-to-end encryption)."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [{ name = "Timm Schaeuble", email = "contact@simplepush.io" }]
keywords = [
"simplepush",
"push",
"notifications",
"actionable-notifications",
"websocket",
"events",
"tasks",
"workflow",
"automation",
"low-code",
"no-code",
"forms",
"data-collection",
"human-in-the-loop",
"approvals",
"mobile",
"end-to-end-encryption",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# The HTTP path uses stdlib `urllib`. WebSocket events need the `websockets`
# package. The crypto extra pulls in libsodium (`pynacl`) for Argon2id and
# XChaCha20-Poly1305, matching the other clients' wire format; callers who only
# want event/HTTP can install without it.
dependencies = [
"websockets>=12.0",
]
[project.optional-dependencies]
crypto = [
"pynacl>=1.5.0",
]
[project.urls]
Homepage = "https://simplepu.sh"
Documentation = "https://simplepu.sh/guide/python-sdk"
Source = "https://github.com/simplepush/simplepush-python"
Issues = "https://github.com/simplepush/simplepush-python/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/simplepush"]
[tool.hatch.build.targets.sdist]
include = [
"src/simplepush",
"README.md",
"LICENSE",
"pyproject.toml",
]