persidict 0.104.8__tar.gz → 0.105.0__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 (20) hide show
  1. {persidict-0.104.8 → persidict-0.105.0}/PKG-INFO +3 -1
  2. {persidict-0.104.8 → persidict-0.105.0}/README.md +1 -0
  3. {persidict-0.104.8 → persidict-0.105.0}/pyproject.toml +8 -1
  4. persidict-0.105.0/src/persidict/.DS_Store +0 -0
  5. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/__init__.py +0 -0
  6. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/basic_s3_dict.py +0 -0
  7. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/cached_appendonly_dict.py +0 -0
  8. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/cached_mutable_dict.py +0 -0
  9. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/empty_dict.py +0 -0
  10. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/file_dir_dict.py +0 -0
  11. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/local_dict.py +0 -0
  12. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/overlapping_multi_dict.py +0 -0
  13. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/persi_dict.py +0 -0
  14. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/s3_dict_file_dir_cached.py +0 -0
  15. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/s3_dict_legacy.py +0 -0
  16. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/safe_chars.py +0 -0
  17. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/safe_str_tuple.py +0 -0
  18. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/safe_str_tuple_signing.py +0 -0
  19. {persidict-0.104.8 → persidict-0.105.0}/src/persidict/singletons.py +0 -0
  20. {persidict-0.104.8 → persidict-0.105.0}/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.104.8
3
+ Version: 0.105.0
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
@@ -25,6 +25,7 @@ Requires-Dist: joblib
25
25
  Requires-Dist: jsonpickle
26
26
  Requires-Dist: deepdiff
27
27
  Requires-Dist: boto3
28
+ Requires-Dist: sphinx-rtd-theme==3.0.2
28
29
  Requires-Dist: boto3 ; extra == 'aws'
29
30
  Requires-Dist: numpy ; extra == 'dev'
30
31
  Requires-Dist: pandas ; extra == 'dev'
@@ -43,6 +44,7 @@ Description-Content-Type: text/markdown
43
44
  [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://pypi.org/project/persidict/)
44
45
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
45
46
  [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
47
+ [![Documentation Status](https://app.readthedocs.org/projects/persidict/badge/?version=latest)](https://persidict.readthedocs.io/en/latest/)
46
48
 
47
49
  Simple persistent dictionaries for distributed applications in Python.
48
50
 
@@ -4,6 +4,7 @@
4
4
  [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://pypi.org/project/persidict/)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
6
  [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
7
+ [![Documentation Status](https://app.readthedocs.org/projects/persidict/badge/?version=latest)](https://persidict.readthedocs.io/en/latest/)
7
8
 
8
9
  Simple persistent dictionaries for distributed applications in Python.
9
10
 
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "persidict"
7
- version = "0.104.8"
7
+ version = "0.105.0"
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"
@@ -35,6 +35,7 @@ dependencies = [
35
35
  "jsonpickle",
36
36
  "deepdiff",
37
37
  "boto3",
38
+ "sphinx-rtd-theme==3.0.2",
38
39
  ]
39
40
 
40
41
  [project.urls]
@@ -52,3 +53,9 @@ dev = [
52
53
  aws = [
53
54
  "boto3"
54
55
  ]
56
+
57
+ [dependency-groups]
58
+ docs = [
59
+ "sphinx",
60
+ "sphinx-rtd-theme",
61
+ ]