hatch-xclam 0.7.1.dev3__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.
Files changed (150) hide show
  1. {hatch_xclam-0.7.1.dev3/hatch_xclam.egg-info → hatch_xclam-0.8.0.dev1}/PKG-INFO +3 -2
  2. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/__init__.py +1 -1
  3. hatch_xclam-0.8.0.dev1/hatch/cli/__init__.py +71 -0
  4. hatch_xclam-0.8.0.dev1/hatch/cli/__main__.py +1035 -0
  5. hatch_xclam-0.8.0.dev1/hatch/cli/cli_env.py +865 -0
  6. hatch_xclam-0.8.0.dev1/hatch/cli/cli_mcp.py +1965 -0
  7. hatch_xclam-0.8.0.dev1/hatch/cli/cli_package.py +566 -0
  8. hatch_xclam-0.8.0.dev1/hatch/cli/cli_system.py +136 -0
  9. hatch_xclam-0.8.0.dev1/hatch/cli/cli_utils.py +1289 -0
  10. hatch_xclam-0.8.0.dev1/hatch/cli_hatch.py +172 -0
  11. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/__init__.py +10 -10
  12. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/__init__.py +34 -0
  13. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/base.py +170 -0
  14. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/claude.py +105 -0
  15. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/codex.py +104 -0
  16. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/cursor.py +83 -0
  17. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/gemini.py +75 -0
  18. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/kiro.py +78 -0
  19. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/lmstudio.py +79 -0
  20. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/registry.py +149 -0
  21. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/adapters/vscode.py +83 -0
  22. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/backup.py +5 -3
  23. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/fields.py +126 -0
  24. hatch_xclam-0.8.0.dev1/hatch/mcp_host_config/models.py +431 -0
  25. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/reporting.py +57 -16
  26. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/strategies.py +155 -87
  27. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/template_generator.py +1 -1
  28. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1/hatch_xclam.egg-info}/PKG-INFO +3 -2
  29. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch_xclam.egg-info/SOURCES.txt +75 -57
  30. hatch_xclam-0.8.0.dev1/hatch_xclam.egg-info/entry_points.txt +2 -0
  31. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch_xclam.egg-info/requires.txt +2 -1
  32. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch_xclam.egg-info/top_level.txt +1 -0
  33. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/pyproject.toml +3 -3
  34. hatch_xclam-0.8.0.dev1/tests/cli_test_utils.py +280 -0
  35. hatch_xclam-0.8.0.dev1/tests/integration/cli/__init__.py +14 -0
  36. hatch_xclam-0.8.0.dev1/tests/integration/cli/test_cli_reporter_integration.py +2439 -0
  37. hatch_xclam-0.8.0.dev1/tests/integration/mcp/__init__.py +0 -0
  38. hatch_xclam-0.8.0.dev1/tests/integration/mcp/test_adapter_serialization.py +173 -0
  39. hatch_xclam-0.8.0.dev1/tests/regression/cli/__init__.py +16 -0
  40. hatch_xclam-0.8.0.dev1/tests/regression/cli/test_color_logic.py +268 -0
  41. hatch_xclam-0.8.0.dev1/tests/regression/cli/test_consequence_type.py +298 -0
  42. hatch_xclam-0.8.0.dev1/tests/regression/cli/test_error_formatting.py +328 -0
  43. hatch_xclam-0.8.0.dev1/tests/regression/cli/test_result_reporter.py +586 -0
  44. hatch_xclam-0.8.0.dev1/tests/regression/cli/test_table_formatter.py +211 -0
  45. hatch_xclam-0.8.0.dev1/tests/regression/mcp/__init__.py +0 -0
  46. hatch_xclam-0.8.0.dev1/tests/regression/mcp/test_field_filtering.py +162 -0
  47. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_cli_version.py +7 -5
  48. hatch_xclam-0.8.0.dev1/tests/test_data/fixtures/cli_reporter_fixtures.py +184 -0
  49. hatch_xclam-0.8.0.dev1/tests/unit/__init__.py +0 -0
  50. hatch_xclam-0.8.0.dev1/tests/unit/mcp/__init__.py +0 -0
  51. hatch_xclam-0.8.0.dev1/tests/unit/mcp/test_adapter_protocol.py +138 -0
  52. hatch_xclam-0.8.0.dev1/tests/unit/mcp/test_adapter_registry.py +158 -0
  53. hatch_xclam-0.8.0.dev1/tests/unit/mcp/test_config_model.py +146 -0
  54. hatch_xclam-0.7.1.dev3/hatch/cli_hatch.py +0 -2850
  55. hatch_xclam-0.7.1.dev3/hatch/mcp_host_config/models.py +0 -726
  56. hatch_xclam-0.7.1.dev3/hatch_xclam.egg-info/entry_points.txt +0 -2
  57. hatch_xclam-0.7.1.dev3/tests/integration/test_mcp_kiro_integration.py +0 -153
  58. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_codex_backup_integration.py +0 -162
  59. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_codex_host_strategy.py +0 -163
  60. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_codex_model_validation.py +0 -117
  61. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_kiro_backup_integration.py +0 -241
  62. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_kiro_cli_integration.py +0 -141
  63. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_kiro_decorator_registration.py +0 -71
  64. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_kiro_host_strategy.py +0 -214
  65. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_kiro_model_validation.py +0 -116
  66. hatch_xclam-0.7.1.dev3/tests/regression/test_mcp_kiro_omni_conversion.py +0 -104
  67. hatch_xclam-0.7.1.dev3/tests/test_mcp_atomic_operations.py +0 -276
  68. hatch_xclam-0.7.1.dev3/tests/test_mcp_backup_integration.py +0 -308
  69. hatch_xclam-0.7.1.dev3/tests/test_mcp_cli_all_host_specific_args.py +0 -496
  70. hatch_xclam-0.7.1.dev3/tests/test_mcp_cli_backup_management.py +0 -295
  71. hatch_xclam-0.7.1.dev3/tests/test_mcp_cli_direct_management.py +0 -456
  72. hatch_xclam-0.7.1.dev3/tests/test_mcp_cli_discovery_listing.py +0 -582
  73. hatch_xclam-0.7.1.dev3/tests/test_mcp_cli_host_config_integration.py +0 -823
  74. hatch_xclam-0.7.1.dev3/tests/test_mcp_cli_package_management.py +0 -360
  75. hatch_xclam-0.7.1.dev3/tests/test_mcp_cli_partial_updates.py +0 -859
  76. hatch_xclam-0.7.1.dev3/tests/test_mcp_environment_integration.py +0 -520
  77. hatch_xclam-0.7.1.dev3/tests/test_mcp_host_config_backup.py +0 -257
  78. hatch_xclam-0.7.1.dev3/tests/test_mcp_host_configuration_manager.py +0 -331
  79. hatch_xclam-0.7.1.dev3/tests/test_mcp_host_registry_decorator.py +0 -348
  80. hatch_xclam-0.7.1.dev3/tests/test_mcp_pydantic_architecture_v4.py +0 -603
  81. hatch_xclam-0.7.1.dev3/tests/test_mcp_server_config_models.py +0 -242
  82. hatch_xclam-0.7.1.dev3/tests/test_mcp_server_config_type_field.py +0 -221
  83. hatch_xclam-0.7.1.dev3/tests/test_mcp_sync_functionality.py +0 -316
  84. hatch_xclam-0.7.1.dev3/tests/test_mcp_user_feedback_reporting.py +0 -359
  85. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/LICENSE +0 -0
  86. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/README.md +0 -0
  87. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/environment_manager.py +0 -0
  88. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/__init__.py +0 -0
  89. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/dependency_installation_orchestrator.py +0 -0
  90. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/docker_installer.py +0 -0
  91. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/hatch_installer.py +0 -0
  92. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/installation_context.py +0 -0
  93. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/installer_base.py +0 -0
  94. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/python_installer.py +0 -0
  95. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/registry.py +0 -0
  96. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/installers/system_installer.py +0 -0
  97. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/mcp_host_config/host_management.py +0 -0
  98. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/package_loader.py +0 -0
  99. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/python_environment_manager.py +0 -0
  100. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/registry_explorer.py +0 -0
  101. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch/registry_retriever.py +0 -0
  102. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/hatch_xclam.egg-info/dependency_links.txt +0 -0
  103. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/setup.cfg +0 -0
  104. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/__init__.py +0 -0
  105. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/integration/__init__.py +0 -0
  106. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/regression/__init__.py +0 -0
  107. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/run_environment_tests.py +0 -0
  108. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/base_pkg/hatch_mcp_server.py +0 -0
  109. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/base_pkg/mcp_server.py +0 -0
  110. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/base_pkg_v2/hatch_mcp_server.py +0 -0
  111. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/base_pkg_v2/mcp_server.py +0 -0
  112. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/utility_pkg/hatch_mcp_server.py +0 -0
  113. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/basic/utility_pkg/mcp_server.py +0 -0
  114. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/complex_dep_pkg/hatch_mcp_server.py +0 -0
  115. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/complex_dep_pkg/mcp_server.py +0 -0
  116. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/docker_dep_pkg/hatch_mcp_server.py +0 -0
  117. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/docker_dep_pkg/mcp_server.py +0 -0
  118. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/mixed_dep_pkg/hatch_mcp_server.py +0 -0
  119. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/mixed_dep_pkg/mcp_server.py +0 -0
  120. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/python_dep_pkg/hatch_mcp_server.py +0 -0
  121. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/python_dep_pkg/mcp_server.py +0 -0
  122. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/simple_dep_pkg/hatch_mcp_server.py +0 -0
  123. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/simple_dep_pkg/mcp_server.py +0 -0
  124. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/system_dep_pkg/hatch_mcp_server.py +0 -0
  125. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/dependencies/system_dep_pkg/mcp_server.py +0 -0
  126. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/circular_dep_pkg/hatch_mcp_server.py +0 -0
  127. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/circular_dep_pkg/mcp_server.py +0 -0
  128. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/circular_dep_pkg_b/hatch_mcp_server.py +0 -0
  129. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/circular_dep_pkg_b/mcp_server.py +0 -0
  130. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/invalid_dep_pkg/hatch_mcp_server.py +0 -0
  131. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/invalid_dep_pkg/mcp_server.py +0 -0
  132. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/version_conflict_pkg/hatch_mcp_server.py +0 -0
  133. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/error_scenarios/version_conflict_pkg/mcp_server.py +0 -0
  134. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/schema_versions/schema_v1_1_0_pkg/main.py +0 -0
  135. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/schema_versions/schema_v1_2_0_pkg/main.py +0 -0
  136. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/hatch_mcp_server.py +0 -0
  137. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/mcp_server.py +0 -0
  138. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_data_utils.py +0 -0
  139. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_dependency_orchestrator_consent.py +0 -0
  140. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_docker_installer.py +0 -0
  141. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_env_manip.py +0 -0
  142. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_hatch_installer.py +0 -0
  143. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_installer_base.py +0 -0
  144. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_non_tty_integration.py +0 -0
  145. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_online_package_loader.py +0 -0
  146. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_python_environment_manager.py +0 -0
  147. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_python_installer.py +0 -0
  148. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_registry.py +0 -0
  149. {hatch_xclam-0.7.1.dev3 → hatch_xclam-0.8.0.dev1}/tests/test_registry_retriever.py +0 -0
  150. {hatch_xclam-0.7.1.dev3 → 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.7.1.dev3
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 .cli_hatch import main
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
+ ]