xache 5.2.1__tar.gz → 5.2.3__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 (36) hide show
  1. {xache-5.2.1 → xache-5.2.3}/PKG-INFO +3 -3
  2. {xache-5.2.1 → xache-5.2.3}/pyproject.toml +3 -3
  3. {xache-5.2.1 → xache-5.2.3}/xache.egg-info/PKG-INFO +3 -3
  4. {xache-5.2.1 → xache-5.2.3}/README.md +0 -0
  5. {xache-5.2.1 → xache-5.2.3}/setup.cfg +0 -0
  6. {xache-5.2.1 → xache-5.2.3}/setup.py +0 -0
  7. {xache-5.2.1 → xache-5.2.3}/xache/__init__.py +0 -0
  8. {xache-5.2.1 → xache-5.2.3}/xache/client.py +0 -0
  9. {xache-5.2.1 → xache-5.2.3}/xache/crypto/__init__.py +0 -0
  10. {xache-5.2.1 → xache-5.2.3}/xache/crypto/signing.py +0 -0
  11. {xache-5.2.1 → xache-5.2.3}/xache/crypto/wallet.py +0 -0
  12. {xache-5.2.1 → xache-5.2.3}/xache/errors.py +0 -0
  13. {xache-5.2.1 → xache-5.2.3}/xache/payment/__init__.py +0 -0
  14. {xache-5.2.1 → xache-5.2.3}/xache/payment/handler.py +0 -0
  15. {xache-5.2.1 → xache-5.2.3}/xache/services/__init__.py +0 -0
  16. {xache-5.2.1 → xache-5.2.3}/xache/services/budget.py +0 -0
  17. {xache-5.2.1 → xache-5.2.3}/xache/services/collective.py +0 -0
  18. {xache-5.2.1 → xache-5.2.3}/xache/services/extraction.py +0 -0
  19. {xache-5.2.1 → xache-5.2.3}/xache/services/facilitator.py +0 -0
  20. {xache-5.2.1 → xache-5.2.3}/xache/services/identity.py +0 -0
  21. {xache-5.2.1 → xache-5.2.3}/xache/services/memory.py +0 -0
  22. {xache-5.2.1 → xache-5.2.3}/xache/services/owner.py +0 -0
  23. {xache-5.2.1 → xache-5.2.3}/xache/services/receipts.py +0 -0
  24. {xache-5.2.1 → xache-5.2.3}/xache/services/reputation.py +0 -0
  25. {xache-5.2.1 → xache-5.2.3}/xache/services/royalty.py +0 -0
  26. {xache-5.2.1 → xache-5.2.3}/xache/services/sessions.py +0 -0
  27. {xache-5.2.1 → xache-5.2.3}/xache/services/workspaces.py +0 -0
  28. {xache-5.2.1 → xache-5.2.3}/xache/types.py +0 -0
  29. {xache-5.2.1 → xache-5.2.3}/xache/utils/__init__.py +0 -0
  30. {xache-5.2.1 → xache-5.2.3}/xache/utils/cache.py +0 -0
  31. {xache-5.2.1 → xache-5.2.3}/xache/utils/http.py +0 -0
  32. {xache-5.2.1 → xache-5.2.3}/xache/utils/retry.py +0 -0
  33. {xache-5.2.1 → xache-5.2.3}/xache.egg-info/SOURCES.txt +0 -0
  34. {xache-5.2.1 → xache-5.2.3}/xache.egg-info/dependency_links.txt +0 -0
  35. {xache-5.2.1 → xache-5.2.3}/xache.egg-info/requires.txt +0 -0
  36. {xache-5.2.1 → xache-5.2.3}/xache.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xache
3
- Version: 5.2.1
3
+ Version: 5.2.3
4
4
  Summary: Official Python SDK for Xache Protocol
5
5
  Home-page: https://github.com/xache-ai/xache-protocol
6
6
  Author: Xache Protocol
@@ -8,8 +8,8 @@ Author-email: Xache Protocol <dev@xache.xyz>
8
8
  License: MIT
9
9
  Project-URL: Homepage, https://xache.xyz
10
10
  Project-URL: Documentation, https://docs.xache.xyz
11
- Project-URL: Repository, https://github.com/oliveskin/xache
12
- Project-URL: Bug Reports, https://github.com/oliveskin/xache/issues
11
+ Project-URL: Repository, https://github.com/xacheai/xache-protocol
12
+ Project-URL: Bug Reports, https://github.com/xacheai/xache-protocol/issues
13
13
  Keywords: xache,ai,agent,memory,blockchain,decentralized
14
14
  Classifier: Development Status :: 4 - Beta
15
15
  Classifier: Intended Audience :: Developers
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "xache"
7
- version = "5.2.1"
7
+ version = "5.2.3"
8
8
  description = "Official Python SDK for Xache Protocol"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -50,8 +50,8 @@ encryption = [
50
50
  [project.urls]
51
51
  Homepage = "https://xache.xyz"
52
52
  Documentation = "https://docs.xache.xyz"
53
- Repository = "https://github.com/oliveskin/xache"
54
- "Bug Reports" = "https://github.com/oliveskin/xache/issues"
53
+ Repository = "https://github.com/xacheai/xache-protocol"
54
+ "Bug Reports" = "https://github.com/xacheai/xache-protocol/issues"
55
55
 
56
56
  [tool.pytest.ini_options]
57
57
  asyncio_mode = "auto"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xache
3
- Version: 5.2.1
3
+ Version: 5.2.3
4
4
  Summary: Official Python SDK for Xache Protocol
5
5
  Home-page: https://github.com/xache-ai/xache-protocol
6
6
  Author: Xache Protocol
@@ -8,8 +8,8 @@ Author-email: Xache Protocol <dev@xache.xyz>
8
8
  License: MIT
9
9
  Project-URL: Homepage, https://xache.xyz
10
10
  Project-URL: Documentation, https://docs.xache.xyz
11
- Project-URL: Repository, https://github.com/oliveskin/xache
12
- Project-URL: Bug Reports, https://github.com/oliveskin/xache/issues
11
+ Project-URL: Repository, https://github.com/xacheai/xache-protocol
12
+ Project-URL: Bug Reports, https://github.com/xacheai/xache-protocol/issues
13
13
  Keywords: xache,ai,agent,memory,blockchain,decentralized
14
14
  Classifier: Development Status :: 4 - Beta
15
15
  Classifier: Intended Audience :: Developers
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes