hatch-xclam 0.7.1.dev2__tar.gz → 0.8.0.dev1__tar.gz
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.
- {hatch_xclam-0.7.1.dev2/hatch_xclam.egg-info → hatch_xclam-0.8.0.dev1}/PKG-INFO +3 -2
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/__init__.py +1 -1
- hatch_xclam-0.8.0.dev1/hatch/cli/__init__.py +71 -0
- hatch_xclam-0.8.0.dev1/hatch/cli/__main__.py +1035 -0
- hatch_xclam-0.8.0.dev1/hatch/cli/cli_env.py +865 -0
- hatch_xclam-0.8.0.dev1/hatch/cli/cli_mcp.py +1965 -0
- hatch_xclam-0.8.0.dev1/hatch/cli/cli_package.py +566 -0
- hatch_xclam-0.8.0.dev1/hatch/cli/cli_system.py +136 -0
- hatch_xclam-0.8.0.dev1/hatch/cli/cli_utils.py +1289 -0
- hatch_xclam-0.8.0.dev1/hatch/cli_hatch.py +172 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/__init__.py +10 -10
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/__init__.py +34 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/base.py +170 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/claude.py +105 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/codex.py +104 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/cursor.py +83 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/gemini.py +75 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/kiro.py +78 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/lmstudio.py +79 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/registry.py +149 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/vscode.py +83 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/backup.py +5 -3
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/fields.py +126 -0
- hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/models.py +431 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/reporting.py +57 -16
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/strategies.py +155 -87
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/template_generator.py +1 -1
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1/hatch_xclam.egg-info}/PKG-INFO +3 -2
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch_xclam.egg-info/SOURCES.txt +75 -57
- hatch_xclam-0.8.0.dev1/hatch_xclam.egg-info/entry_points.txt +2 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch_xclam.egg-info/requires.txt +2 -1
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch_xclam.egg-info/top_level.txt +1 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/pyproject.toml +3 -3
- hatch_xclam-0.8.0.dev1/tests/cli_test_utils.py +280 -0
- hatch_xclam-0.8.0.dev1/tests/integration/cli/__init__.py +14 -0
- hatch_xclam-0.8.0.dev1/tests/integration/cli/test_cli_reporter_integration.py +2439 -0
- hatch_xclam-0.8.0.dev1/tests/integration/mcp/__init__.py +0 -0
- hatch_xclam-0.8.0.dev1/tests/integration/mcp/test_adapter_serialization.py +173 -0
- hatch_xclam-0.8.0.dev1/tests/regression/cli/__init__.py +16 -0
- hatch_xclam-0.8.0.dev1/tests/regression/cli/test_color_logic.py +268 -0
- hatch_xclam-0.8.0.dev1/tests/regression/cli/test_consequence_type.py +298 -0
- hatch_xclam-0.8.0.dev1/tests/regression/cli/test_error_formatting.py +328 -0
- hatch_xclam-0.8.0.dev1/tests/regression/cli/test_result_reporter.py +586 -0
- hatch_xclam-0.8.0.dev1/tests/regression/cli/test_table_formatter.py +211 -0
- hatch_xclam-0.8.0.dev1/tests/regression/mcp/__init__.py +0 -0
- hatch_xclam-0.8.0.dev1/tests/regression/mcp/test_field_filtering.py +162 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_cli_version.py +7 -5
- hatch_xclam-0.8.0.dev1/tests/test_data/fixtures/cli_reporter_fixtures.py +184 -0
- hatch_xclam-0.8.0.dev1/tests/unit/__init__.py +0 -0
- hatch_xclam-0.8.0.dev1/tests/unit/mcp/__init__.py +0 -0
- hatch_xclam-0.8.0.dev1/tests/unit/mcp/test_adapter_protocol.py +138 -0
- hatch_xclam-0.8.0.dev1/tests/unit/mcp/test_adapter_registry.py +158 -0
- hatch_xclam-0.8.0.dev1/tests/unit/mcp/test_config_model.py +146 -0
- hatch_xclam-0.7.1.dev2/hatch/cli_hatch.py +0 -2848
- hatch_xclam-0.7.1.dev2/hatch/mcp_host_config/models.py +0 -726
- hatch_xclam-0.7.1.dev2/hatch_xclam.egg-info/entry_points.txt +0 -2
- hatch_xclam-0.7.1.dev2/tests/integration/test_mcp_kiro_integration.py +0 -153
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_codex_backup_integration.py +0 -162
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_codex_host_strategy.py +0 -163
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_codex_model_validation.py +0 -117
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_kiro_backup_integration.py +0 -241
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_kiro_cli_integration.py +0 -141
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_kiro_decorator_registration.py +0 -71
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_kiro_host_strategy.py +0 -214
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_kiro_model_validation.py +0 -116
- hatch_xclam-0.7.1.dev2/tests/regression/test_mcp_kiro_omni_conversion.py +0 -104
- hatch_xclam-0.7.1.dev2/tests/test_mcp_atomic_operations.py +0 -276
- hatch_xclam-0.7.1.dev2/tests/test_mcp_backup_integration.py +0 -308
- hatch_xclam-0.7.1.dev2/tests/test_mcp_cli_all_host_specific_args.py +0 -496
- hatch_xclam-0.7.1.dev2/tests/test_mcp_cli_backup_management.py +0 -295
- hatch_xclam-0.7.1.dev2/tests/test_mcp_cli_direct_management.py +0 -456
- hatch_xclam-0.7.1.dev2/tests/test_mcp_cli_discovery_listing.py +0 -582
- hatch_xclam-0.7.1.dev2/tests/test_mcp_cli_host_config_integration.py +0 -823
- hatch_xclam-0.7.1.dev2/tests/test_mcp_cli_package_management.py +0 -360
- hatch_xclam-0.7.1.dev2/tests/test_mcp_cli_partial_updates.py +0 -859
- hatch_xclam-0.7.1.dev2/tests/test_mcp_environment_integration.py +0 -520
- hatch_xclam-0.7.1.dev2/tests/test_mcp_host_config_backup.py +0 -257
- hatch_xclam-0.7.1.dev2/tests/test_mcp_host_configuration_manager.py +0 -331
- hatch_xclam-0.7.1.dev2/tests/test_mcp_host_registry_decorator.py +0 -348
- hatch_xclam-0.7.1.dev2/tests/test_mcp_pydantic_architecture_v4.py +0 -603
- hatch_xclam-0.7.1.dev2/tests/test_mcp_server_config_models.py +0 -242
- hatch_xclam-0.7.1.dev2/tests/test_mcp_server_config_type_field.py +0 -221
- hatch_xclam-0.7.1.dev2/tests/test_mcp_sync_functionality.py +0 -316
- hatch_xclam-0.7.1.dev2/tests/test_mcp_user_feedback_reporting.py +0 -359
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/LICENSE +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/README.md +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/environment_manager.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/__init__.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/dependency_installation_orchestrator.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/docker_installer.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/hatch_installer.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/installation_context.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/installer_base.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/python_installer.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/registry.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/installers/system_installer.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/host_management.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/package_loader.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/python_environment_manager.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/registry_explorer.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch/registry_retriever.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/hatch_xclam.egg-info/dependency_links.txt +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/setup.cfg +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/__init__.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/integration/__init__.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/regression/__init__.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/run_environment_tests.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/base_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/base_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/base_pkg_v2/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/base_pkg_v2/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/utility_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/utility_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/complex_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/complex_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/docker_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/docker_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/mixed_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/mixed_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/python_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/python_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/simple_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/simple_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/system_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/system_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/circular_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/circular_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/circular_dep_pkg_b/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/circular_dep_pkg_b/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/invalid_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/invalid_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/version_conflict_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/version_conflict_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/schema_versions/schema_v1_1_0_pkg/main.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/schema_versions/schema_v1_2_0_pkg/main.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_data_utils.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_dependency_orchestrator_consent.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_docker_installer.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_env_manip.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_hatch_installer.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_installer_base.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_non_tty_integration.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_online_package_loader.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_python_environment_manager.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_python_installer.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_registry.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_registry_retriever.py +0 -0
- {hatch_xclam-0.7.1.dev2 → hatch_xclam-0.8.0.dev1}/tests/test_system_installer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hatch-xclam
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0.dev1
|
|
4
4
|
Summary: Package manager for the Cracking Shells ecosystem
|
|
5
5
|
Author: Cracking Shells Team
|
|
6
6
|
Project-URL: Homepage, https://github.com/CrackingShells/Hatch
|
|
@@ -22,7 +22,8 @@ Provides-Extra: docs
|
|
|
22
22
|
Requires-Dist: mkdocs>=1.4.0; extra == "docs"
|
|
23
23
|
Requires-Dist: mkdocstrings[python]>=0.20.0; extra == "docs"
|
|
24
24
|
Provides-Extra: dev
|
|
25
|
-
Requires-Dist: wobble>=0.2.0; extra == "dev"
|
|
25
|
+
Requires-Dist: cs-wobble>=0.2.0; extra == "dev"
|
|
26
|
+
Requires-Dist: pytest>=8.0.0; extra == "dev"
|
|
26
27
|
Dynamic: license-file
|
|
27
28
|
|
|
28
29
|
# Hatch
|
|
@@ -5,7 +5,7 @@ This package provides tools for managing Hatch packages, environments,
|
|
|
5
5
|
and interacting with the Hatch registry.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
from .
|
|
8
|
+
from .cli import main
|
|
9
9
|
from .environment_manager import HatchEnvironmentManager
|
|
10
10
|
from .package_loader import HatchPackageLoader, PackageLoaderError
|
|
11
11
|
from .registry_retriever import RegistryRetriever
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"""CLI package for Hatch package manager.
|
|
2
|
+
|
|
3
|
+
This package provides the command-line interface for Hatch, organized into
|
|
4
|
+
domain-specific handler modules following a handler-based architecture pattern.
|
|
5
|
+
|
|
6
|
+
Architecture Overview:
|
|
7
|
+
The CLI is structured as a routing layer (__main__.py) that delegates to
|
|
8
|
+
specialized handler modules. Each handler follows the standardized signature:
|
|
9
|
+
(args: Namespace) -> int, where args contains parsed command-line arguments
|
|
10
|
+
and the return value is the exit code (0 for success, non-zero for errors).
|
|
11
|
+
|
|
12
|
+
Modules:
|
|
13
|
+
__main__: Entry point with argument parsing and command routing
|
|
14
|
+
cli_utils: Shared utilities, exit codes, and helper functions
|
|
15
|
+
cli_mcp: MCP (Model Context Protocol) host configuration handlers
|
|
16
|
+
cli_env: Environment management handlers
|
|
17
|
+
cli_package: Package management handlers
|
|
18
|
+
cli_system: System commands (create, validate)
|
|
19
|
+
|
|
20
|
+
Entry Points:
|
|
21
|
+
- main(): Primary entry point for the CLI
|
|
22
|
+
- python -m hatch.cli: Module execution
|
|
23
|
+
- hatch: Console script (when installed via pip)
|
|
24
|
+
|
|
25
|
+
Example:
|
|
26
|
+
>>> from hatch.cli import main
|
|
27
|
+
>>> exit_code = main() # Runs CLI with sys.argv
|
|
28
|
+
|
|
29
|
+
>>> from hatch.cli import EXIT_SUCCESS, EXIT_ERROR
|
|
30
|
+
>>> return EXIT_SUCCESS if operation_ok else EXIT_ERROR
|
|
31
|
+
|
|
32
|
+
Backward Compatibility:
|
|
33
|
+
The hatch.cli_hatch module re-exports all public symbols for backward
|
|
34
|
+
compatibility with external consumers.
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
# Export utilities from cli_utils (no circular import issues)
|
|
38
|
+
from hatch.cli.cli_utils import (
|
|
39
|
+
EXIT_SUCCESS,
|
|
40
|
+
EXIT_ERROR,
|
|
41
|
+
get_hatch_version,
|
|
42
|
+
request_confirmation,
|
|
43
|
+
parse_env_vars,
|
|
44
|
+
parse_header,
|
|
45
|
+
parse_input,
|
|
46
|
+
parse_host_list,
|
|
47
|
+
get_package_mcp_server_config,
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def main():
|
|
52
|
+
"""Main entry point - delegates to __main__.main().
|
|
53
|
+
|
|
54
|
+
This provides the hatch.cli.main() interface.
|
|
55
|
+
"""
|
|
56
|
+
from hatch.cli.__main__ import main as _main
|
|
57
|
+
return _main()
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
__all__ = [
|
|
61
|
+
'main',
|
|
62
|
+
'EXIT_SUCCESS',
|
|
63
|
+
'EXIT_ERROR',
|
|
64
|
+
'get_hatch_version',
|
|
65
|
+
'request_confirmation',
|
|
66
|
+
'parse_env_vars',
|
|
67
|
+
'parse_header',
|
|
68
|
+
'parse_input',
|
|
69
|
+
'parse_host_list',
|
|
70
|
+
'get_package_mcp_server_config',
|
|
71
|
+
]
|