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 +29 -0
- ic/cli.py +769 -0
- ic/commands/__init__.py +10 -0
- ic/commands/config.py +699 -0
- ic/compat/__init__.py +241 -0
- ic/compat/cli.py +289 -0
- ic/compat/common.py +243 -0
- ic/config/__init__.py +10 -0
- ic/config/cleanup.py +382 -0
- ic/config/docs_organizer.py +587 -0
- ic/config/external.py +456 -0
- ic/config/manager.py +898 -0
- ic/config/migration.py +628 -0
- ic/config/schema.py +595 -0
- ic/config/secrets.py +437 -0
- ic/config/security.py +462 -0
- ic/core/__init__.py +16 -0
- ic/core/logging.py +311 -0
- ic/core/mcp_manager.py +856 -0
- ic/core/session.py +392 -0
- ic/core/silence_logging.py +67 -0
- ic_code-1.0.0.dist-info/METADATA +354 -0
- ic_code-1.0.0.dist-info/RECORD +27 -0
- ic_code-1.0.0.dist-info/WHEEL +5 -0
- ic_code-1.0.0.dist-info/entry_points.txt +2 -0
- ic_code-1.0.0.dist-info/licenses/LICENSE +21 -0
- ic_code-1.0.0.dist-info/top_level.txt +1 -0
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
|
+
]
|