kitchenowl-python 0.0.1__tar.gz → 0.0.2__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.
- {kitchenowl_python-0.0.1/src/kitchenowl_python.egg-info → kitchenowl_python-0.0.2}/PKG-INFO +8 -8
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/pyproject.toml +9 -9
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2/src/kitchenowl_python.egg-info}/PKG-INFO +8 -8
- kitchenowl_python-0.0.2/src/kitchenowl_python.egg-info/requires.txt +11 -0
- kitchenowl_python-0.0.1/src/kitchenowl_python.egg-info/requires.txt +0 -11
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/LICENSE +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/README.md +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/setup.cfg +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python/__init__.py +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python/const.py +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python/exceptions.py +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python/kitchenowl.py +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python/types.py +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python.egg-info/SOURCES.txt +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python.egg-info/dependency_links.txt +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python.egg-info/top_level.txt +0 -0
- {kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/tests/test_kitchenowl.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: kitchenowl-python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: A python wrapper for the KitchenOwl API
|
|
5
5
|
Author: super-qua
|
|
6
6
|
Author-email: Tom Bursch <tom@kitchenowl.org>
|
|
@@ -36,15 +36,15 @@ Classifier: Programming Language :: Python
|
|
|
36
36
|
Requires-Python: >=3.8
|
|
37
37
|
Description-Content-Type: text/markdown
|
|
38
38
|
License-File: LICENSE
|
|
39
|
-
Requires-Dist: aiohttp
|
|
39
|
+
Requires-Dist: aiohttp>=3.11.11
|
|
40
40
|
Provides-Extra: test
|
|
41
|
-
Requires-Dist: aioresponses==0.7.
|
|
42
|
-
Requires-Dist: pytest==8.
|
|
43
|
-
Requires-Dist: pytest-asyncio==0.
|
|
41
|
+
Requires-Dist: aioresponses==0.7.8; extra == "test"
|
|
42
|
+
Requires-Dist: pytest==8.3.4; extra == "test"
|
|
43
|
+
Requires-Dist: pytest-asyncio==0.25.3; extra == "test"
|
|
44
44
|
Requires-Dist: pytest-cov==6.0.0; extra == "test"
|
|
45
|
-
Requires-Dist: syrupy==4.
|
|
45
|
+
Requires-Dist: syrupy==4.8.1; extra == "test"
|
|
46
46
|
Provides-Extra: lint
|
|
47
|
-
Requires-Dist: ruff==0.
|
|
47
|
+
Requires-Dist: ruff==0.9.4; extra == "lint"
|
|
48
48
|
|
|
49
49
|
# kitchenowl-python
|
|
50
50
|
A simple wrapper around the KitchenOwl API.
|
|
@@ -3,7 +3,7 @@ name = "kitchenowl-python"
|
|
|
3
3
|
description = "A python wrapper for the KitchenOwl API"
|
|
4
4
|
readme = "README.md"
|
|
5
5
|
keywords = ["kitchenowl"]
|
|
6
|
-
version = "0.0.
|
|
6
|
+
version = "0.0.2"
|
|
7
7
|
authors = [
|
|
8
8
|
{name = "Tom Bursch", email = "tom@kitchenowl.org"},
|
|
9
9
|
{name = "super-qua"},
|
|
@@ -14,20 +14,20 @@ classifiers = [
|
|
|
14
14
|
"Programming Language :: Python"
|
|
15
15
|
]
|
|
16
16
|
dependencies = [
|
|
17
|
-
"aiohttp
|
|
17
|
+
"aiohttp >= 3.11.11"
|
|
18
18
|
]
|
|
19
19
|
requires-python = ">=3.8"
|
|
20
20
|
|
|
21
21
|
[project.optional-dependencies]
|
|
22
22
|
test = [
|
|
23
|
-
"aioresponses == 0.7.
|
|
24
|
-
"pytest == 8.
|
|
25
|
-
"pytest-asyncio == 0.
|
|
26
|
-
"pytest-cov==6.0.0",
|
|
27
|
-
"syrupy == 4.
|
|
23
|
+
"aioresponses == 0.7.8",
|
|
24
|
+
"pytest == 8.3.4",
|
|
25
|
+
"pytest-asyncio == 0.25.3",
|
|
26
|
+
"pytest-cov == 6.0.0",
|
|
27
|
+
"syrupy == 4.8.1"
|
|
28
28
|
]
|
|
29
29
|
lint = [
|
|
30
|
-
"ruff == 0.
|
|
30
|
+
"ruff == 0.9.4"
|
|
31
31
|
]
|
|
32
32
|
|
|
33
33
|
[project.urls]
|
|
@@ -192,4 +192,4 @@ ignore = [
|
|
|
192
192
|
]
|
|
193
193
|
|
|
194
194
|
[tool.ruff.lint.pydocstyle]
|
|
195
|
-
convention = "google"
|
|
195
|
+
convention = "google"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: kitchenowl-python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: A python wrapper for the KitchenOwl API
|
|
5
5
|
Author: super-qua
|
|
6
6
|
Author-email: Tom Bursch <tom@kitchenowl.org>
|
|
@@ -36,15 +36,15 @@ Classifier: Programming Language :: Python
|
|
|
36
36
|
Requires-Python: >=3.8
|
|
37
37
|
Description-Content-Type: text/markdown
|
|
38
38
|
License-File: LICENSE
|
|
39
|
-
Requires-Dist: aiohttp
|
|
39
|
+
Requires-Dist: aiohttp>=3.11.11
|
|
40
40
|
Provides-Extra: test
|
|
41
|
-
Requires-Dist: aioresponses==0.7.
|
|
42
|
-
Requires-Dist: pytest==8.
|
|
43
|
-
Requires-Dist: pytest-asyncio==0.
|
|
41
|
+
Requires-Dist: aioresponses==0.7.8; extra == "test"
|
|
42
|
+
Requires-Dist: pytest==8.3.4; extra == "test"
|
|
43
|
+
Requires-Dist: pytest-asyncio==0.25.3; extra == "test"
|
|
44
44
|
Requires-Dist: pytest-cov==6.0.0; extra == "test"
|
|
45
|
-
Requires-Dist: syrupy==4.
|
|
45
|
+
Requires-Dist: syrupy==4.8.1; extra == "test"
|
|
46
46
|
Provides-Extra: lint
|
|
47
|
-
Requires-Dist: ruff==0.
|
|
47
|
+
Requires-Dist: ruff==0.9.4; extra == "lint"
|
|
48
48
|
|
|
49
49
|
# kitchenowl-python
|
|
50
50
|
A simple wrapper around the KitchenOwl API.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{kitchenowl_python-0.0.1 → kitchenowl_python-0.0.2}/src/kitchenowl_python.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|