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

Sign up to get free protection for your applications and to get access to all the features.
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
+ ]