persidict 0.105.23__tar.gz → 0.105.24__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.24}/PKG-INFO +19 -2
  2. {persidict-0.105.23 → persidict-0.105.24}/README.md +3 -1
  3. {persidict-0.105.23 → persidict-0.105.24}/pyproject.toml +6 -3
  4. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/.DS_Store +0 -0
  5. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/__init__.py +0 -0
  6. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/basic_s3_dict.py +0 -0
  7. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/cached_appendonly_dict.py +0 -0
  8. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/cached_mutable_dict.py +0 -0
  9. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/empty_dict.py +0 -0
  10. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/file_dir_dict.py +0 -0
  11. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/local_dict.py +0 -0
  12. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/overlapping_multi_dict.py +0 -0
  13. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/persi_dict.py +0 -0
  14. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/s3_dict_file_dir_cached.py +0 -0
  15. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/safe_chars.py +0 -0
  16. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/safe_str_tuple.py +0 -0
  17. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/safe_str_tuple_signing.py +0 -0
  18. {persidict-0.105.23 → persidict-0.105.24}/src/persidict/singletons.py +0 -0
  19. {persidict-0.105.23 → persidict-0.105.24}/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.24
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,36 @@ 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: sphinx ; extra == 'dev'
38
+ Requires-Dist: sphinx-rtd-theme ; extra == 'dev'
39
+ Requires-Dist: pydata-sphinx-theme ; extra == 'dev'
40
+ Requires-Dist: furo ; extra == 'dev'
41
+ Requires-Dist: sphinx ; extra == 'docs'
42
+ Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
43
+ Requires-Dist: pydata-sphinx-theme ; extra == 'docs'
44
+ Requires-Dist: furo ; extra == 'docs'
32
45
  Requires-Python: >=3.10
33
46
  Project-URL: Docs, https://persidict.readthedocs.io/
34
47
  Project-URL: Home, https://github.com/pythagoras-dev/persidict
35
48
  Provides-Extra: aws
49
+ Provides-Extra: dev
50
+ Provides-Extra: docs
36
51
  Description-Content-Type: text/markdown
37
52
 
38
53
  # persidict
39
54
 
40
55
  [![PyPI version](https://img.shields.io/pypi/v/persidict.svg)](https://pypi.org/project/persidict/)
41
56
  [![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)
57
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
43
58
  [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
44
59
  [![Documentation Status](https://app.readthedocs.org/projects/persidict/badge/?version=latest)](https://persidict.readthedocs.io/en/latest/)
60
+ [![Code style: pep8](https://img.shields.io/badge/code_style-pep8-blue.svg)](https://peps.python.org/pep-0008/)
61
+ [![Docstring Style: Google](https://img.shields.io/badge/docstrings_style-Google-blue)](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html)
45
62
 
46
63
  Simple persistent dictionaries for distributed applications in Python.
47
64
 
@@ -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)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
6
6
  [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/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.24"
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"
@@ -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,9 @@ dev = [
62
61
  "pandas",
63
62
  "boto3",
64
63
  "moto",
65
- "pytest"
64
+ "pytest",
65
+ "sphinx",
66
+ "sphinx-rtd-theme",
67
+ "pydata_sphinx_theme",
68
+ "furo",
66
69
  ]