problee 0.2.4__tar.gz → 0.2.5__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. {problee-0.2.4 → problee-0.2.5}/PKG-INFO +1 -1
  2. {problee-0.2.4 → problee-0.2.5}/problee/__init__.py +1 -1
  3. {problee-0.2.4 → problee-0.2.5}/problee.egg-info/PKG-INFO +1 -1
  4. {problee-0.2.4 → problee-0.2.5}/pyproject.toml +1 -1
  5. {problee-0.2.4 → problee-0.2.5}/LICENSE +0 -0
  6. {problee-0.2.4 → problee-0.2.5}/README.md +0 -0
  7. {problee-0.2.4 → problee-0.2.5}/problee/_generated/__init__.py +0 -0
  8. {problee-0.2.4 → problee-0.2.5}/problee/_generated/client.py +0 -0
  9. {problee-0.2.4 → problee-0.2.5}/problee/_generated/models/__init__.py +0 -0
  10. {problee-0.2.4 → problee-0.2.5}/problee/api/__init__.py +0 -0
  11. {problee-0.2.4 → problee-0.2.5}/problee/api/markets.py +0 -0
  12. {problee-0.2.4 → problee-0.2.5}/problee/api/positions.py +0 -0
  13. {problee-0.2.4 → problee-0.2.5}/problee/api/quotes.py +0 -0
  14. {problee-0.2.4 → problee-0.2.5}/problee/client.py +0 -0
  15. {problee-0.2.4 → problee-0.2.5}/problee/exceptions.py +0 -0
  16. {problee-0.2.4 → problee-0.2.5}/problee/models/__init__.py +0 -0
  17. {problee-0.2.4 → problee-0.2.5}/problee/models/market.py +0 -0
  18. {problee-0.2.4 → problee-0.2.5}/problee/models/position.py +0 -0
  19. {problee-0.2.4 → problee-0.2.5}/problee/models/quote.py +0 -0
  20. {problee-0.2.4 → problee-0.2.5}/problee/py.typed +0 -0
  21. {problee-0.2.4 → problee-0.2.5}/problee/streaming/__init__.py +0 -0
  22. {problee-0.2.4 → problee-0.2.5}/problee/streaming/sse.py +0 -0
  23. {problee-0.2.4 → problee-0.2.5}/problee/streaming/websocket.py +0 -0
  24. {problee-0.2.4 → problee-0.2.5}/problee.egg-info/SOURCES.txt +0 -0
  25. {problee-0.2.4 → problee-0.2.5}/problee.egg-info/dependency_links.txt +0 -0
  26. {problee-0.2.4 → problee-0.2.5}/problee.egg-info/requires.txt +0 -0
  27. {problee-0.2.4 → problee-0.2.5}/problee.egg-info/top_level.txt +0 -0
  28. {problee-0.2.4 → problee-0.2.5}/setup.cfg +0 -0
  29. {problee-0.2.4 → problee-0.2.5}/setup.py +0 -0
  30. {problee-0.2.4 → problee-0.2.5}/tests/test_client.py +0 -0
  31. {problee-0.2.4 → problee-0.2.5}/tests/test_generated_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: problee
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: Python SDK for the Problee Agent API
5
5
  Author-email: Problee <dev@problee.com>
6
6
  License-Expression: MIT
@@ -9,7 +9,7 @@ from importlib.metadata import PackageNotFoundError, version as _pkg_version
9
9
  try:
10
10
  __version__ = _pkg_version("problee")
11
11
  except PackageNotFoundError: # editable/source install without metadata
12
- __version__ = "0.2.4+source"
12
+ __version__ = "0.2.5+source"
13
13
 
14
14
  from .client import ProbClient
15
15
  from ._generated import GeneratedAgentClient
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: problee
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: Python SDK for the Problee Agent API
5
5
  Author-email: Problee <dev@problee.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "problee"
7
- version = "0.2.4"
7
+ version = "0.2.5"
8
8
  description = "Python SDK for the Problee Agent API"
9
9
  readme = "README.md"
10
10
  license = "MIT"
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