python-ntfy 0.9.0__tar.gz → 0.9.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/PKG-INFO +3 -17
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/pyproject.toml +5 -25
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/README.md +0 -0
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/python_ntfy/__init__.py +0 -0
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/python_ntfy/_exceptions.py +0 -0
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/python_ntfy/_get_functions.py +0 -0
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/python_ntfy/_ntfy.py +0 -0
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/python_ntfy/_send_functions.py +0 -0
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/python_ntfy/client.py +0 -0
- {python_ntfy-0.9.0 → python_ntfy-0.9.1}/python_ntfy/py.typed +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-ntfy
|
|
3
|
-
Version: 0.9.
|
|
4
|
-
Summary: An
|
|
3
|
+
Version: 0.9.1
|
|
4
|
+
Summary: An easy-to-use library for the ntfy notification service.
|
|
5
5
|
Keywords: ntfy,notifications,push,http,api
|
|
6
6
|
Author: Matthew Cane
|
|
7
7
|
Author-email: Matthew Cane <matthew.cane0@gmail.com>
|
|
@@ -18,26 +18,12 @@ Classifier: Topic :: Communications
|
|
|
18
18
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
19
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
20
|
Requires-Dist: requests>=2.31.0
|
|
21
|
-
Requires-Dist: mkdocstrings[python]>=0.26.2,<0.31.0 ; extra == 'dev'
|
|
22
|
-
Requires-Dist: mypy>=1.12.0,<2.0.0 ; extra == 'dev'
|
|
23
|
-
Requires-Dist: pytest>=7.4.1,<9.0.0 ; extra == 'dev'
|
|
24
|
-
Requires-Dist: python-dotenv>=1.0.0,<2.0.0 ; extra == 'dev'
|
|
25
|
-
Requires-Dist: pytest-asyncio>=0.21.1,<1.2.0 ; extra == 'dev'
|
|
26
|
-
Requires-Dist: pytest-codecov>=0.5.1,<0.8.0 ; extra == 'dev'
|
|
27
|
-
Requires-Dist: ruff>=0.7,<0.13 ; extra == 'dev'
|
|
28
|
-
Requires-Dist: mkdocs-material>=9.5.41,<10.0.0 ; extra == 'dev'
|
|
29
|
-
Requires-Dist: mkdocstrings-python>=1.12.1,<2.0.0 ; extra == 'dev'
|
|
30
|
-
Requires-Dist: types-pygments>=2.18.0.20240506 ; extra == 'dev'
|
|
31
|
-
Requires-Dist: types-colorama>=0.4.15.20240311 ; extra == 'dev'
|
|
32
|
-
Requires-Dist: types-requests>=2.32.0.20241016 ; extra == 'dev'
|
|
33
|
-
Requires-Dist: types-setuptools>=75.2.0.20241018,<81.0.0.0 ; extra == 'dev'
|
|
34
21
|
Requires-Python: >=3.12, <3.14
|
|
35
22
|
Project-URL: Changelog, https://github.com/matthewcane/python-ntfy/releases
|
|
36
|
-
Project-URL: Documentation, https://
|
|
23
|
+
Project-URL: Documentation, https://matthewcane.github.io/python-ntfy/
|
|
37
24
|
Project-URL: Homepage, https://github.com/matthewcane/python-ntfy
|
|
38
25
|
Project-URL: Issues, https://github.com/matthewcane/python-ntfy/issues
|
|
39
26
|
Project-URL: Repository, https://github.com/matthewcane/python-ntfy
|
|
40
|
-
Provides-Extra: dev
|
|
41
27
|
Description-Content-Type: text/markdown
|
|
42
28
|
|
|
43
29
|
# A Python Library For ntfy
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "python-ntfy"
|
|
3
|
-
version = "0.9.
|
|
4
|
-
description = "An
|
|
3
|
+
version = "0.9.1"
|
|
4
|
+
description = "An easy-to-use library for the ntfy notification service."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
7
7
|
requires-python = ">=3.12, <3.14"
|
|
@@ -24,7 +24,7 @@ authors = [{ name = "Matthew Cane", email = "matthew.cane0@gmail.com" }]
|
|
|
24
24
|
|
|
25
25
|
[project.urls]
|
|
26
26
|
Homepage = "https://github.com/matthewcane/python-ntfy"
|
|
27
|
-
Documentation = "https://
|
|
27
|
+
Documentation = "https://matthewcane.github.io/python-ntfy/"
|
|
28
28
|
Repository = "https://github.com/matthewcane/python-ntfy"
|
|
29
29
|
Issues = "https://github.com/matthewcane/python-ntfy/issues"
|
|
30
30
|
Changelog = "https://github.com/matthewcane/python-ntfy/releases"
|
|
@@ -37,24 +37,7 @@ build-backend = "uv_build"
|
|
|
37
37
|
module-name = "python_ntfy"
|
|
38
38
|
module-root = ""
|
|
39
39
|
|
|
40
|
-
[
|
|
41
|
-
dev-dependencies = [
|
|
42
|
-
"mkdocstrings[python]>=0.26.2,<0.31.0",
|
|
43
|
-
"mypy>=1.12.0,<2.0.0",
|
|
44
|
-
"pytest>=7.4.1,<9.0.0",
|
|
45
|
-
"python-dotenv>=1.0.0,<2.0.0",
|
|
46
|
-
"pytest-asyncio>=0.21.1,<1.2.0",
|
|
47
|
-
"pytest-codecov>=0.5.1,<0.8.0",
|
|
48
|
-
"ruff>=0.7,<0.13",
|
|
49
|
-
"mkdocs-material>=9.5.41,<10.0.0",
|
|
50
|
-
"mkdocstrings-python>=1.12.1,<2.0.0",
|
|
51
|
-
"types-pygments>=2.18.0.20240506",
|
|
52
|
-
"types-colorama>=0.4.15.20240311",
|
|
53
|
-
"types-requests>=2.32.0.20241016",
|
|
54
|
-
"types-setuptools>=75.2.0.20241018,<81.0.0.0",
|
|
55
|
-
]
|
|
56
|
-
|
|
57
|
-
[project.optional-dependencies]
|
|
40
|
+
[dependency-groups]
|
|
58
41
|
dev = [
|
|
59
42
|
"mkdocstrings[python]>=0.26.2,<0.31.0",
|
|
60
43
|
"mypy>=1.12.0,<2.0.0",
|
|
@@ -142,9 +125,6 @@ disallow_incomplete_defs = false
|
|
|
142
125
|
disallow_untyped_defs = false
|
|
143
126
|
|
|
144
127
|
[[tool.mypy.overrides]]
|
|
145
|
-
module = [
|
|
146
|
-
"python_ntfy.client",
|
|
147
|
-
"python_ntfy.__init__",
|
|
148
|
-
]
|
|
128
|
+
module = ["python_ntfy.client", "python_ntfy.__init__"]
|
|
149
129
|
disallow_incomplete_defs = true
|
|
150
130
|
disallow_untyped_defs = true
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|