keepa 1.4.2__tar.gz → 1.4.3__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.
- {keepa-1.4.2 → keepa-1.4.3}/PKG-INFO +6 -6
- {keepa-1.4.2 → keepa-1.4.3}/README.rst +2 -2
- {keepa-1.4.2 → keepa-1.4.3}/pyproject.toml +4 -4
- {keepa-1.4.2 → keepa-1.4.3}/LICENSE +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/__init__.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/constants.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/keepa_async.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/keepa_sync.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/models/domain.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/models/product_params.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/models/status.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/plotting.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/py.typed +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/query_keys.py +0 -0
- {keepa-1.4.2 → keepa-1.4.3}/src/keepa/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: keepa
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.3
|
|
4
4
|
Summary: Interfaces with keepa.com's API.
|
|
5
5
|
Keywords: keepa
|
|
6
6
|
Author-email: Alex Kaszynski <akascap@gmail.com>
|
|
@@ -22,9 +22,9 @@ Requires-Dist: tqdm
|
|
|
22
22
|
Requires-Dist: aiohttp
|
|
23
23
|
Requires-Dist: pandas <= 3.0
|
|
24
24
|
Requires-Dist: pydantic
|
|
25
|
-
Requires-Dist: sphinx==
|
|
26
|
-
Requires-Dist: pydata-sphinx-theme==0.
|
|
27
|
-
Requires-Dist: numpydoc==1.
|
|
25
|
+
Requires-Dist: sphinx==9.1.0 ; extra == "doc"
|
|
26
|
+
Requires-Dist: pydata-sphinx-theme==0.16.1 ; extra == "doc"
|
|
27
|
+
Requires-Dist: numpydoc==1.10.0 ; extra == "doc"
|
|
28
28
|
Requires-Dist: matplotlib ; extra == "test"
|
|
29
29
|
Requires-Dist: pandas ; extra == "test"
|
|
30
30
|
Requires-Dist: pytest-asyncio ; extra == "test"
|
|
@@ -346,8 +346,8 @@ found at `keepacom/api_backend <https://github.com/keepacom/api_backend/>`_.
|
|
|
346
346
|
|
|
347
347
|
License
|
|
348
348
|
-------
|
|
349
|
-
Apache License, please see license file. Work is credited to both Alex
|
|
350
|
-
|
|
349
|
+
Apache License, please see license file. Work is credited to both Alex Kaszynski
|
|
350
|
+
and Marius Johann.
|
|
351
351
|
|
|
352
352
|
|
|
353
353
|
.. _create a pull request: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request
|
|
@@ -308,8 +308,8 @@ found at `keepacom/api_backend <https://github.com/keepacom/api_backend/>`_.
|
|
|
308
308
|
|
|
309
309
|
License
|
|
310
310
|
-------
|
|
311
|
-
Apache License, please see license file. Work is credited to both Alex
|
|
312
|
-
|
|
311
|
+
Apache License, please see license file. Work is credited to both Alex Kaszynski
|
|
312
|
+
and Marius Johann.
|
|
313
313
|
|
|
314
314
|
|
|
315
315
|
.. _create a pull request: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request
|
|
@@ -33,13 +33,13 @@ keywords = ["keepa"]
|
|
|
33
33
|
name = "keepa"
|
|
34
34
|
readme = "README.rst"
|
|
35
35
|
requires-python = ">=3.10"
|
|
36
|
-
version = "1.4.
|
|
36
|
+
version = "1.4.3"
|
|
37
37
|
|
|
38
38
|
[project.optional-dependencies]
|
|
39
39
|
doc = [
|
|
40
|
-
"sphinx==
|
|
41
|
-
"pydata-sphinx-theme==0.
|
|
42
|
-
"numpydoc==1.
|
|
40
|
+
"sphinx==9.1.0",
|
|
41
|
+
"pydata-sphinx-theme==0.16.1",
|
|
42
|
+
"numpydoc==1.10.0"
|
|
43
43
|
]
|
|
44
44
|
test = [
|
|
45
45
|
"matplotlib",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|