agentstr 0.1.7__py3-none-any.whl → 0.1.8__py3-none-any.whl

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.
agentstr/__init__.py CHANGED
@@ -1 +1,30 @@
1
- __version__ = "0.0.1"
1
+ """
2
+ AgentStr: Nostr extension for Phidata AI agents
3
+ """
4
+
5
+ # Import main classes to make them available at package level
6
+ from .marketplace import (
7
+ Merchant,
8
+ MerchantProduct,
9
+ MerchantStall,
10
+ Profile,
11
+ ShippingCost,
12
+ ShippingMethod,
13
+ )
14
+
15
+ # Import version from pyproject.toml at runtime
16
+ try:
17
+ from importlib.metadata import version
18
+
19
+ __version__ = version("agentstr")
20
+ except Exception:
21
+ __version__ = "unknown"
22
+
23
+ __all__ = [
24
+ "Profile",
25
+ "Merchant",
26
+ "MerchantStall",
27
+ "MerchantProduct",
28
+ "ShippingMethod",
29
+ "ShippingCost",
30
+ ]