persidict 0.105.23__tar.gz → 0.105.25__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.

Potentially problematic release.


This version of persidict might be problematic. Click here for more details.

Files changed (19) hide show
  1. {persidict-0.105.23 → persidict-0.105.25}/PKG-INFO +21 -3
  2. {persidict-0.105.23 → persidict-0.105.25}/README.md +4 -2
  3. {persidict-0.105.23 → persidict-0.105.25}/pyproject.toml +9 -5
  4. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/.DS_Store +0 -0
  5. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/__init__.py +0 -0
  6. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/basic_s3_dict.py +0 -0
  7. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/cached_appendonly_dict.py +0 -0
  8. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/cached_mutable_dict.py +0 -0
  9. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/empty_dict.py +0 -0
  10. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/file_dir_dict.py +0 -0
  11. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/local_dict.py +0 -0
  12. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/overlapping_multi_dict.py +0 -0
  13. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/persi_dict.py +0 -0
  14. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/s3_dict_file_dir_cached.py +0 -0
  15. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/safe_chars.py +0 -0
  16. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/safe_str_tuple.py +0 -0
  17. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/safe_str_tuple_signing.py +0 -0
  18. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/singletons.py +0 -0
  19. {persidict-0.105.23 → persidict-0.105.25}/src/persidict/write_once_dict.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: persidict
3
- Version: 0.105.23
3
+ Version: 0.105.25
4
4
  Summary: Simple persistent key-value store for Python. Values are stored as files on a disk or as S3 objects on AWS cloud.
5
5
  Keywords: persistence,dicts,distributed,parallel
6
6
  Author: Vlad (Volodymyr) Pavlov
@@ -29,19 +29,37 @@ Requires-Dist: sphinx-rtd-theme
29
29
  Requires-Dist: furo
30
30
  Requires-Dist: sphinx-book-theme
31
31
  Requires-Dist: boto3 ; extra == 'aws'
32
+ Requires-Dist: numpy ; extra == 'dev'
33
+ Requires-Dist: pandas ; extra == 'dev'
34
+ Requires-Dist: boto3 ; extra == 'dev'
35
+ Requires-Dist: moto ; extra == 'dev'
36
+ Requires-Dist: pytest ; extra == 'dev'
37
+ Requires-Dist: coverage ; extra == 'dev'
38
+ Requires-Dist: sphinx ; extra == 'dev'
39
+ Requires-Dist: sphinx-rtd-theme ; extra == 'dev'
40
+ Requires-Dist: pydata-sphinx-theme ; extra == 'dev'
41
+ Requires-Dist: furo ; extra == 'dev'
42
+ Requires-Dist: sphinx ; extra == 'docs'
43
+ Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
44
+ Requires-Dist: pydata-sphinx-theme ; extra == 'docs'
45
+ Requires-Dist: furo ; extra == 'docs'
32
46
  Requires-Python: >=3.10
33
47
  Project-URL: Docs, https://persidict.readthedocs.io/
34
48
  Project-URL: Home, https://github.com/pythagoras-dev/persidict
35
49
  Provides-Extra: aws
50
+ Provides-Extra: dev
51
+ Provides-Extra: docs
36
52
  Description-Content-Type: text/markdown
37
53
 
38
54
  # persidict
39
55
 
40
56
  [![PyPI version](https://img.shields.io/pypi/v/persidict.svg)](https://pypi.org/project/persidict/)
41
57
  [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://github.com/pythagoras-dev/persidict)
42
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
43
- [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
58
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
59
+ [![Downloads](https://img.shields.io/pypi/dm/persidict?color=blue)](https://pypistats.org/packages/persidict)
44
60
  [![Documentation Status](https://app.readthedocs.org/projects/persidict/badge/?version=latest)](https://persidict.readthedocs.io/en/latest/)
61
+ [![Code style: pep8](https://img.shields.io/badge/code_style-pep8-blue.svg)](https://peps.python.org/pep-0008/)
62
+ [![Docstring Style: Google](https://img.shields.io/badge/docstrings_style-Google-blue)](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html)
45
63
 
46
64
  Simple persistent dictionaries for distributed applications in Python.
47
65
 
@@ -2,9 +2,11 @@
2
2
 
3
3
  [![PyPI version](https://img.shields.io/pypi/v/persidict.svg)](https://pypi.org/project/persidict/)
4
4
  [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://github.com/pythagoras-dev/persidict)
5
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
- [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
6
+ [![Downloads](https://img.shields.io/pypi/dm/persidict?color=blue)](https://pypistats.org/packages/persidict)
7
7
  [![Documentation Status](https://app.readthedocs.org/projects/persidict/badge/?version=latest)](https://persidict.readthedocs.io/en/latest/)
8
+ [![Code style: pep8](https://img.shields.io/badge/code_style-pep8-blue.svg)](https://peps.python.org/pep-0008/)
9
+ [![Docstring Style: Google](https://img.shields.io/badge/docstrings_style-Google-blue)](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html)
8
10
 
9
11
  Simple persistent dictionaries for distributed applications in Python.
10
12
 
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "persidict"
7
- version = "0.105.23"
7
+ version = "0.105.25"
8
8
  description = "Simple persistent key-value store for Python. Values are stored as files on a disk or as S3 objects on AWS cloud."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -37,7 +37,7 @@ dependencies = [
37
37
  "boto3",
38
38
  "sphinx-rtd-theme",
39
39
  "furo",
40
- "sphinx-book-theme",
40
+ "sphinx-book-theme"
41
41
  ]
42
42
 
43
43
  [project.urls]
@@ -49,7 +49,6 @@ aws = [
49
49
  "boto3"
50
50
  ]
51
51
 
52
- [dependency-groups]
53
52
  docs = [
54
53
  "sphinx",
55
54
  "sphinx-rtd-theme",
@@ -62,5 +61,10 @@ dev = [
62
61
  "pandas",
63
62
  "boto3",
64
63
  "moto",
65
- "pytest"
66
- ]
64
+ "pytest",
65
+ "coverage",
66
+ "sphinx",
67
+ "sphinx-rtd-theme",
68
+ "pydata_sphinx_theme",
69
+ "furo",
70
+ ]