ic-code 1.0.0__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.
ic/__init__.py ADDED
@@ -0,0 +1,29 @@
1
+ """
2
+ IC (Infra Resource Management CLI) - A comprehensive tool for managing cloud infrastructure resources.
3
+
4
+ This package provides CLI tools and libraries for managing AWS, Azure, GCP, OCI, and CloudFlare resources.
5
+ """
6
+
7
+ __version__ = "2.0.0"
8
+ __author__ = "SangYun"
9
+ __email__ = "cruiser594@gmail.com"
10
+
11
+ # Core components
12
+ from ic.core.mcp_manager import MCPManager, MCPQueryResult, create_default_mcp_config
13
+ from ic.config.security import SecurityManager
14
+ from ic.config.manager import ConfigManager
15
+ from ic.core.logging import ICLogger
16
+ from ic.core.session import AWSSessionManager
17
+
18
+ __all__ = [
19
+ "__version__",
20
+ "__author__",
21
+ "__email__",
22
+ "MCPManager",
23
+ "MCPQueryResult",
24
+ "create_default_mcp_config",
25
+ "SecurityManager",
26
+ "ConfigManager",
27
+ "ICLogger",
28
+ "AWSSessionManager"
29
+ ]