kedis-python 0.1.1__tar.gz → 0.1.2__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.
Files changed (31) hide show
  1. {kedis_python-0.1.1 → kedis_python-0.1.2}/PKG-INFO +3 -1
  2. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python.egg-info/PKG-INFO +3 -1
  3. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python.egg-info/SOURCES.txt +1 -0
  4. kedis_python-0.1.2/kedis_python.egg-info/requires.txt +2 -0
  5. {kedis_python-0.1.1 → kedis_python-0.1.2}/pyproject.toml +2 -2
  6. {kedis_python-0.1.1 → kedis_python-0.1.2}/LICENSE +0 -0
  7. {kedis_python-0.1.1 → kedis_python-0.1.2}/README.md +0 -0
  8. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/__init__.py +0 -0
  9. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/benchmark.py +0 -0
  10. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/benchmark_asyncio.py +0 -0
  11. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/commands.py +0 -0
  12. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/kesp_cli.py +0 -0
  13. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/main.py +0 -0
  14. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/network.py +0 -0
  15. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/parser.py +0 -0
  16. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/replica.py +0 -0
  17. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/server.py +0 -0
  18. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/simulator.py +0 -0
  19. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/skiplist.py +0 -0
  20. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/store.py +0 -0
  21. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python/ui.py +0 -0
  22. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python.egg-info/dependency_links.txt +0 -0
  23. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python.egg-info/entry_points.txt +0 -0
  24. {kedis_python-0.1.1 → kedis_python-0.1.2}/kedis_python.egg-info/top_level.txt +0 -0
  25. {kedis_python-0.1.1 → kedis_python-0.1.2}/setup.cfg +0 -0
  26. {kedis_python-0.1.1 → kedis_python-0.1.2}/tests/test_bench.py +0 -0
  27. {kedis_python-0.1.1 → kedis_python-0.1.2}/tests/test_kesp.py +0 -0
  28. {kedis_python-0.1.1 → kedis_python-0.1.2}/tests/test_kesp2.py +0 -0
  29. {kedis_python-0.1.1 → kedis_python-0.1.2}/tests/test_lists.py +0 -0
  30. {kedis_python-0.1.1 → kedis_python-0.1.2}/tests/test_lru.py +0 -0
  31. {kedis_python-0.1.1 → kedis_python-0.1.2}/tests/test_replica.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kedis-python
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A Redis-inspired in-memory store in Python.
5
5
  Author: V SS Karthik
6
6
  License-Expression: MIT
@@ -8,6 +8,8 @@ Project-URL: Homepage, https://github.com/Hogwarts-coder10/kedis-python
8
8
  Requires-Python: >=3.9
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
+ Requires-Dist: rich
12
+ Requires-Dist: pyfiglet
11
13
  Dynamic: license-file
12
14
 
13
15
  # 🚀 Kedis-Python
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kedis-python
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A Redis-inspired in-memory store in Python.
5
5
  Author: V SS Karthik
6
6
  License-Expression: MIT
@@ -8,6 +8,8 @@ Project-URL: Homepage, https://github.com/Hogwarts-coder10/kedis-python
8
8
  Requires-Python: >=3.9
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
+ Requires-Dist: rich
12
+ Requires-Dist: pyfiglet
11
13
  Dynamic: license-file
12
14
 
13
15
  # 🚀 Kedis-Python
@@ -19,6 +19,7 @@ kedis_python.egg-info/PKG-INFO
19
19
  kedis_python.egg-info/SOURCES.txt
20
20
  kedis_python.egg-info/dependency_links.txt
21
21
  kedis_python.egg-info/entry_points.txt
22
+ kedis_python.egg-info/requires.txt
22
23
  kedis_python.egg-info/top_level.txt
23
24
  tests/test_bench.py
24
25
  tests/test_kesp.py
@@ -0,0 +1,2 @@
1
+ rich
2
+ pyfiglet
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "kedis-python"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "A Redis-inspired in-memory store in Python."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -17,7 +17,7 @@ authors = [
17
17
  # If your project actually depends on third-party packages at runtime,
18
18
  # list them here instead of leaving this empty — check requirements.txt
19
19
  # and copy the real ones over.
20
- dependencies = []
20
+ dependencies = ["rich","pyfiglet"]
21
21
 
22
22
  [project.urls]
23
23
  Homepage = "https://github.com/Hogwarts-coder10/kedis-python"
File without changes
File without changes
File without changes