redis-dict 3.1.0__tar.gz → 3.1.1__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: redis-dict
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: Dictionary with Redis as storage backend
5
5
  Author-email: Melvin Bijman <bijman.m.m@gmail.com>
6
6
  License: MIT
@@ -64,6 +64,9 @@ Requires-Dist: sphinx-rtd-theme; extra == "docs"
64
64
  Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
65
65
  Requires-Dist: tomli; extra == "docs"
66
66
  Requires-Dist: myst-parser; extra == "docs"
67
+ Provides-Extra: build
68
+ Requires-Dist: build; extra == "build"
69
+ Requires-Dist: twine; extra == "build"
67
70
 
68
71
  # Redis-dict
69
72
  [![PyPI](https://img.shields.io/pypi/v/redis-dict.svg)](https://pypi.org/project/redis-dict/)
@@ -282,7 +285,7 @@ print(dic["d"]) # Output: 4
282
285
  ```
283
286
 
284
287
  ### Additional Examples
285
- For more advanced examples of RedisDict, please refer to the unit-test files in the repository. All features and functionalities are thoroughly tested in [unit tests (here)](https://github.com/Attumm/redis-dict/blob/main/tests.py#L1) Or take a look at load test for batching [load test](https://github.com/Attumm/redis-dict/blob/main/load_test.py#L1).
288
+ For more advanced examples of RedisDict, please refer to the unit-test files in the repository. All features and functionalities are thoroughly tested in [unit tests (here)](https://github.com/Attumm/redis-dict/blob/main/tests/unit/tests.py#L1) Or take a look at load test for batching [load test](https://github.com/Attumm/redis-dict/blob/main/tests/load/load_test.py#L1).
286
289
  The unit-tests can be as used as a starting point.
287
290
 
288
291
  ## Types
@@ -215,7 +215,7 @@ print(dic["d"]) # Output: 4
215
215
  ```
216
216
 
217
217
  ### Additional Examples
218
- For more advanced examples of RedisDict, please refer to the unit-test files in the repository. All features and functionalities are thoroughly tested in [unit tests (here)](https://github.com/Attumm/redis-dict/blob/main/tests.py#L1) Or take a look at load test for batching [load test](https://github.com/Attumm/redis-dict/blob/main/load_test.py#L1).
218
+ For more advanced examples of RedisDict, please refer to the unit-test files in the repository. All features and functionalities are thoroughly tested in [unit tests (here)](https://github.com/Attumm/redis-dict/blob/main/tests/unit/tests.py#L1) Or take a look at load test for batching [load test](https://github.com/Attumm/redis-dict/blob/main/tests/load/load_test.py#L1).
219
219
  The unit-tests can be as used as a starting point.
220
220
 
221
221
  ## Types
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "redis-dict"
7
- version = "3.1.0"
7
+ version = "3.1.1"
8
8
  description = "Dictionary with Redis as storage backend"
9
9
  authors = [
10
10
  {name = "Melvin Bijman", email = "bijman.m.m@gmail.com"},
@@ -89,6 +89,11 @@ docs = [
89
89
  "myst-parser",
90
90
  ]
91
91
 
92
+ build = [
93
+ "build",
94
+ "twine",
95
+ ]
96
+
92
97
 
93
98
  [tool.setuptools]
94
99
  package-dir = {"" = "src"}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: redis-dict
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: Dictionary with Redis as storage backend
5
5
  Author-email: Melvin Bijman <bijman.m.m@gmail.com>
6
6
  License: MIT
@@ -64,6 +64,9 @@ Requires-Dist: sphinx-rtd-theme; extra == "docs"
64
64
  Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
65
65
  Requires-Dist: tomli; extra == "docs"
66
66
  Requires-Dist: myst-parser; extra == "docs"
67
+ Provides-Extra: build
68
+ Requires-Dist: build; extra == "build"
69
+ Requires-Dist: twine; extra == "build"
67
70
 
68
71
  # Redis-dict
69
72
  [![PyPI](https://img.shields.io/pypi/v/redis-dict.svg)](https://pypi.org/project/redis-dict/)
@@ -282,7 +285,7 @@ print(dic["d"]) # Output: 4
282
285
  ```
283
286
 
284
287
  ### Additional Examples
285
- For more advanced examples of RedisDict, please refer to the unit-test files in the repository. All features and functionalities are thoroughly tested in [unit tests (here)](https://github.com/Attumm/redis-dict/blob/main/tests.py#L1) Or take a look at load test for batching [load test](https://github.com/Attumm/redis-dict/blob/main/load_test.py#L1).
288
+ For more advanced examples of RedisDict, please refer to the unit-test files in the repository. All features and functionalities are thoroughly tested in [unit tests (here)](https://github.com/Attumm/redis-dict/blob/main/tests/unit/tests.py#L1) Or take a look at load test for batching [load test](https://github.com/Attumm/redis-dict/blob/main/tests/load/load_test.py#L1).
286
289
  The unit-tests can be as used as a starting point.
287
290
 
288
291
  ## Types
@@ -1,5 +1,9 @@
1
1
  redis>=4.0.0
2
2
 
3
+ [build]
4
+ build
5
+ twine
6
+
3
7
  [dev]
4
8
  coverage==5.5
5
9
  hypothesis==6.70.1
File without changes
File without changes