persidict 0.17.2__tar.gz → 0.17.4__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: persidict
3
- Version: 0.17.2
3
+ Version: 0.17.4
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
@@ -20,13 +20,14 @@ Requires-Dist: joblib
20
20
  Requires-Dist: numpy
21
21
  Requires-Dist: pandas
22
22
  Requires-Dist: jsonpickle
23
- Requires-Dist: boto3
24
23
  Requires-Dist: parameterizable
24
+ Requires-Dist: boto3 ; extra == 'aws'
25
25
  Requires-Dist: boto3 ; extra == 'dev'
26
26
  Requires-Dist: moto ; extra == 'dev'
27
27
  Requires-Dist: pytest ; extra == 'dev'
28
28
  Requires-Python: >=3.10
29
29
  Project-URL: Homepage, https://github.com/pythagoras-dev/persidict
30
+ Provides-Extra: aws
30
31
  Provides-Extra: dev
31
32
  Description-Content-Type: text/markdown
32
33
 
@@ -198,7 +199,15 @@ The source code is hosted on GitHub at:
198
199
  Binary installers for the latest released version are available at the Python package index at:
199
200
  [https://pypi.org/project/persidict](https://pypi.org/project/persidict)
200
201
 
201
- pip install persidict
202
+ Using uv :
203
+ ```
204
+ uv add persidict
205
+ ```
206
+
207
+ Using pip (legacy alternative to uv):
208
+ ```
209
+ pip install persidict
210
+ ```
202
211
 
203
212
  ## Dependencies
204
213
 
@@ -166,7 +166,15 @@ The source code is hosted on GitHub at:
166
166
  Binary installers for the latest released version are available at the Python package index at:
167
167
  [https://pypi.org/project/persidict](https://pypi.org/project/persidict)
168
168
 
169
- pip install persidict
169
+ Using uv :
170
+ ```
171
+ uv add persidict
172
+ ```
173
+
174
+ Using pip (legacy alternative to uv):
175
+ ```
176
+ pip install persidict
177
+ ```
170
178
 
171
179
  ## Dependencies
172
180
 
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "persidict"
7
- version = "0.17.2"
7
+ version = "0.17.4"
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"
@@ -30,7 +30,6 @@ dependencies = [
30
30
  "numpy",
31
31
  "pandas",
32
32
  "jsonpickle",
33
- "boto3",
34
33
  "parameterizable"
35
34
  ]
36
35
 
@@ -42,4 +41,8 @@ dev = [
42
41
  "boto3",
43
42
  "moto",
44
43
  "pytest"
44
+ ]
45
+
46
+ aws = [
47
+ "boto3"
45
48
  ]
Binary file