ap-client 0.1.1__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.
ap_client/__init__.py ADDED
@@ -0,0 +1,21 @@
1
+ """Agent Platform API Client"""
2
+
3
+ from importlib.metadata import PackageNotFoundError, version
4
+
5
+ from .api import APIClient, APIError, get_client
6
+ from .config import Config, ConfigurationError, get_config
7
+
8
+ try:
9
+ __version__ = version("ap-client")
10
+ except PackageNotFoundError:
11
+ __version__ = "0+unknown"
12
+
13
+ __all__ = [
14
+ "APIClient",
15
+ "APIError",
16
+ "Config",
17
+ "ConfigurationError",
18
+ "__version__",
19
+ "get_client",
20
+ "get_config",
21
+ ]