python-ntfy 0.3.6__tar.gz → 0.3.7__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.3.6 → python_ntfy-0.3.7}/PKG-INFO +8 -7
- {python_ntfy-0.3.6 → python_ntfy-0.3.7}/README.md +6 -3
- {python_ntfy-0.3.6 → python_ntfy-0.3.7}/pyproject.toml +5 -3
- {python_ntfy-0.3.6 → python_ntfy-0.3.7}/LICENSE +0 -0
- {python_ntfy-0.3.6 → python_ntfy-0.3.7}/python_ntfy/__init__.py +0 -0
- {python_ntfy-0.3.6 → python_ntfy-0.3.7}/python_ntfy/_get_functions.py +0 -0
- {python_ntfy-0.3.6 → python_ntfy-0.3.7}/python_ntfy/_send_functions.py +0 -0
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-ntfy
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.7
|
|
4
4
|
Summary: An ntfy library aiming for feature completeness
|
|
5
5
|
Home-page: https://github.com/MatthewCane/python-ntfy
|
|
6
6
|
License: MIT
|
|
7
7
|
Author: Matthew Cane
|
|
8
8
|
Author-email: matthew.cane0@gmail.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.12,<=3.13
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
-
Requires-Dist: mypy (>=1.12.0,<2.0.0)
|
|
18
16
|
Requires-Dist: requests (>=2.31.0,<3.0.0)
|
|
19
17
|
Project-URL: Documentation, https://matthewcane.github.io/python-ntfy/
|
|
20
18
|
Project-URL: Repository, https://github.com/MatthewCane/python-ntfy
|
|
@@ -71,12 +69,15 @@ See the full documentation site at [https://matthewcane.github.io/python-ntfy/](
|
|
|
71
69
|
|
|
72
70
|
This project uses:
|
|
73
71
|
|
|
74
|
-
- Poetry as it's dependency manager
|
|
75
|
-
- Ruff for linting and code formatting
|
|
76
|
-
- MyPy for static type checking
|
|
72
|
+
- [Poetry](https://python-poetry.org/) as it's dependency manager
|
|
73
|
+
- [Ruff](https://docs.astral.sh/ruff/) for linting and code formatting
|
|
74
|
+
- [MyPy](https://mypy-lang.org/) for static type checking
|
|
75
|
+
- [Pre-Commit](https://pre-commit.com/) for running the above tools before committing
|
|
77
76
|
|
|
78
77
|
To install dev dependencies, run `poetry install --with dev`.
|
|
79
78
|
|
|
79
|
+
To install pre-commit hooks, run `pre-commit install`.
|
|
80
|
+
|
|
80
81
|
### Linting, Formatting and Type Checking
|
|
81
82
|
|
|
82
83
|
These can be run with:
|
|
@@ -49,12 +49,15 @@ See the full documentation site at [https://matthewcane.github.io/python-ntfy/](
|
|
|
49
49
|
|
|
50
50
|
This project uses:
|
|
51
51
|
|
|
52
|
-
- Poetry as it's dependency manager
|
|
53
|
-
- Ruff for linting and code formatting
|
|
54
|
-
- MyPy for static type checking
|
|
52
|
+
- [Poetry](https://python-poetry.org/) as it's dependency manager
|
|
53
|
+
- [Ruff](https://docs.astral.sh/ruff/) for linting and code formatting
|
|
54
|
+
- [MyPy](https://mypy-lang.org/) for static type checking
|
|
55
|
+
- [Pre-Commit](https://pre-commit.com/) for running the above tools before committing
|
|
55
56
|
|
|
56
57
|
To install dev dependencies, run `poetry install --with dev`.
|
|
57
58
|
|
|
59
|
+
To install pre-commit hooks, run `pre-commit install`.
|
|
60
|
+
|
|
58
61
|
### Linting, Formatting and Type Checking
|
|
59
62
|
|
|
60
63
|
These can be run with:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "python-ntfy"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.7"
|
|
4
4
|
description = "An ntfy library aiming for feature completeness"
|
|
5
5
|
authors = ["Matthew Cane <matthew.cane0@gmail.com>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -10,14 +10,16 @@ documentation = "https://matthewcane.github.io/python-ntfy/"
|
|
|
10
10
|
classifiers = [
|
|
11
11
|
"Development Status :: 4 - Beta",
|
|
12
12
|
"Intended Audience :: Developers",
|
|
13
|
+
"Programming Language :: Python :: 3.12",
|
|
14
|
+
"Programming Language :: Python :: 3.13",
|
|
13
15
|
]
|
|
14
16
|
|
|
15
17
|
[tool.poetry.dependencies]
|
|
16
|
-
python = "
|
|
18
|
+
python = ">=3.12, <=3.13"
|
|
17
19
|
requests = "^2.31.0"
|
|
18
|
-
mypy = "^1.12.0"
|
|
19
20
|
|
|
20
21
|
[tool.poetry.group.dev.dependencies]
|
|
22
|
+
mypy = "^1.12.0"
|
|
21
23
|
pytest = ">=7.4.1,<9.0.0"
|
|
22
24
|
python-dotenv = "^1.0.0"
|
|
23
25
|
pytest-asyncio = ">=0.21.1,<0.25.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|