agentic-blocks 0.1.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentic-blocks
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Simple building blocks for agentic AI systems with MCP client and conversation management
5
5
  Author-email: Magnus Bjelkenhed <bjelkenhed@gmail.com>
6
6
  License: MIT
@@ -14,7 +14,7 @@ agentic_blocks = []
14
14
 
15
15
  [project]
16
16
  name = "agentic-blocks"
17
- version = "0.1.0"
17
+ version = "0.1.2"
18
18
  description = "Simple building blocks for agentic AI systems with MCP client and conversation management"
19
19
  readme = "README.md"
20
20
  requires-python = ">=3.11"
@@ -0,0 +1,13 @@
1
+ """Agentic Blocks - Building blocks for agentic systems."""
2
+
3
+ from .mcp_client import MCPClient, MCPEndpointError
4
+ from .messages import Messages
5
+
6
+ # Get version from package metadata
7
+ try:
8
+ from importlib.metadata import version
9
+ __version__ = version("agentic-blocks")
10
+ except Exception:
11
+ __version__ = "unknown"
12
+
13
+ __all__ = ["MCPClient", "MCPEndpointError", "Messages"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentic-blocks
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Simple building blocks for agentic AI systems with MCP client and conversation management
5
5
  Author-email: Magnus Bjelkenhed <bjelkenhed@gmail.com>
6
6
  License: MIT
@@ -1,8 +0,0 @@
1
- """Agentic Blocks - Building blocks for agentic systems."""
2
-
3
- from .mcp_client import MCPClient, MCPEndpointError
4
- from .messages import Messages
5
-
6
- __version__ = "0.1.0"
7
-
8
- __all__ = ["MCPClient", "MCPEndpointError", "Messages"]
File without changes
File without changes
File without changes