hatch-xclam 0.7.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.
Files changed (93) hide show
  1. hatch/__init__.py +21 -0
  2. hatch/cli_hatch.py +2748 -0
  3. hatch/environment_manager.py +1375 -0
  4. hatch/installers/__init__.py +25 -0
  5. hatch/installers/dependency_installation_orchestrator.py +636 -0
  6. hatch/installers/docker_installer.py +545 -0
  7. hatch/installers/hatch_installer.py +198 -0
  8. hatch/installers/installation_context.py +109 -0
  9. hatch/installers/installer_base.py +195 -0
  10. hatch/installers/python_installer.py +342 -0
  11. hatch/installers/registry.py +179 -0
  12. hatch/installers/system_installer.py +588 -0
  13. hatch/mcp_host_config/__init__.py +38 -0
  14. hatch/mcp_host_config/backup.py +458 -0
  15. hatch/mcp_host_config/host_management.py +572 -0
  16. hatch/mcp_host_config/models.py +602 -0
  17. hatch/mcp_host_config/reporting.py +181 -0
  18. hatch/mcp_host_config/strategies.py +513 -0
  19. hatch/package_loader.py +263 -0
  20. hatch/python_environment_manager.py +734 -0
  21. hatch/registry_explorer.py +171 -0
  22. hatch/registry_retriever.py +335 -0
  23. hatch/template_generator.py +179 -0
  24. hatch_xclam-0.7.0.dist-info/METADATA +150 -0
  25. hatch_xclam-0.7.0.dist-info/RECORD +93 -0
  26. hatch_xclam-0.7.0.dist-info/WHEEL +5 -0
  27. hatch_xclam-0.7.0.dist-info/entry_points.txt +2 -0
  28. hatch_xclam-0.7.0.dist-info/licenses/LICENSE +661 -0
  29. hatch_xclam-0.7.0.dist-info/top_level.txt +2 -0
  30. tests/__init__.py +1 -0
  31. tests/run_environment_tests.py +124 -0
  32. tests/test_cli_version.py +122 -0
  33. tests/test_data/packages/basic/base_pkg/hatch_mcp_server.py +18 -0
  34. tests/test_data/packages/basic/base_pkg/mcp_server.py +21 -0
  35. tests/test_data/packages/basic/base_pkg_v2/hatch_mcp_server.py +18 -0
  36. tests/test_data/packages/basic/base_pkg_v2/mcp_server.py +21 -0
  37. tests/test_data/packages/basic/utility_pkg/hatch_mcp_server.py +18 -0
  38. tests/test_data/packages/basic/utility_pkg/mcp_server.py +21 -0
  39. tests/test_data/packages/dependencies/complex_dep_pkg/hatch_mcp_server.py +18 -0
  40. tests/test_data/packages/dependencies/complex_dep_pkg/mcp_server.py +21 -0
  41. tests/test_data/packages/dependencies/docker_dep_pkg/hatch_mcp_server.py +18 -0
  42. tests/test_data/packages/dependencies/docker_dep_pkg/mcp_server.py +21 -0
  43. tests/test_data/packages/dependencies/mixed_dep_pkg/hatch_mcp_server.py +18 -0
  44. tests/test_data/packages/dependencies/mixed_dep_pkg/mcp_server.py +21 -0
  45. tests/test_data/packages/dependencies/python_dep_pkg/hatch_mcp_server.py +18 -0
  46. tests/test_data/packages/dependencies/python_dep_pkg/mcp_server.py +21 -0
  47. tests/test_data/packages/dependencies/simple_dep_pkg/hatch_mcp_server.py +18 -0
  48. tests/test_data/packages/dependencies/simple_dep_pkg/mcp_server.py +21 -0
  49. tests/test_data/packages/dependencies/system_dep_pkg/hatch_mcp_server.py +18 -0
  50. tests/test_data/packages/dependencies/system_dep_pkg/mcp_server.py +21 -0
  51. tests/test_data/packages/error_scenarios/circular_dep_pkg/hatch_mcp_server.py +18 -0
  52. tests/test_data/packages/error_scenarios/circular_dep_pkg/mcp_server.py +21 -0
  53. tests/test_data/packages/error_scenarios/circular_dep_pkg_b/hatch_mcp_server.py +18 -0
  54. tests/test_data/packages/error_scenarios/circular_dep_pkg_b/mcp_server.py +21 -0
  55. tests/test_data/packages/error_scenarios/invalid_dep_pkg/hatch_mcp_server.py +18 -0
  56. tests/test_data/packages/error_scenarios/invalid_dep_pkg/mcp_server.py +21 -0
  57. tests/test_data/packages/error_scenarios/version_conflict_pkg/hatch_mcp_server.py +18 -0
  58. tests/test_data/packages/error_scenarios/version_conflict_pkg/mcp_server.py +21 -0
  59. tests/test_data/packages/schema_versions/schema_v1_1_0_pkg/main.py +11 -0
  60. tests/test_data/packages/schema_versions/schema_v1_2_0_pkg/main.py +11 -0
  61. tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/hatch_mcp_server.py +18 -0
  62. tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/mcp_server.py +21 -0
  63. tests/test_data_utils.py +472 -0
  64. tests/test_dependency_orchestrator_consent.py +266 -0
  65. tests/test_docker_installer.py +524 -0
  66. tests/test_env_manip.py +991 -0
  67. tests/test_hatch_installer.py +179 -0
  68. tests/test_installer_base.py +221 -0
  69. tests/test_mcp_atomic_operations.py +276 -0
  70. tests/test_mcp_backup_integration.py +308 -0
  71. tests/test_mcp_cli_all_host_specific_args.py +303 -0
  72. tests/test_mcp_cli_backup_management.py +295 -0
  73. tests/test_mcp_cli_direct_management.py +453 -0
  74. tests/test_mcp_cli_discovery_listing.py +582 -0
  75. tests/test_mcp_cli_host_config_integration.py +823 -0
  76. tests/test_mcp_cli_package_management.py +360 -0
  77. tests/test_mcp_cli_partial_updates.py +859 -0
  78. tests/test_mcp_environment_integration.py +520 -0
  79. tests/test_mcp_host_config_backup.py +257 -0
  80. tests/test_mcp_host_configuration_manager.py +331 -0
  81. tests/test_mcp_host_registry_decorator.py +348 -0
  82. tests/test_mcp_pydantic_architecture_v4.py +603 -0
  83. tests/test_mcp_server_config_models.py +242 -0
  84. tests/test_mcp_server_config_type_field.py +221 -0
  85. tests/test_mcp_sync_functionality.py +316 -0
  86. tests/test_mcp_user_feedback_reporting.py +359 -0
  87. tests/test_non_tty_integration.py +281 -0
  88. tests/test_online_package_loader.py +202 -0
  89. tests/test_python_environment_manager.py +882 -0
  90. tests/test_python_installer.py +327 -0
  91. tests/test_registry.py +51 -0
  92. tests/test_registry_retriever.py +250 -0
  93. tests/test_system_installer.py +733 -0
@@ -0,0 +1,150 @@
1
+ Metadata-Version: 2.4
2
+ Name: hatch-xclam
3
+ Version: 0.7.0
4
+ Summary: Package manager for the Cracking Shells ecosystem
5
+ Author: Cracking Shells Team
6
+ Project-URL: Homepage, https://github.com/CrackingShells/Hatch
7
+ Project-URL: Bug Tracker, https://github.com/CrackingShells/Hatch/issues
8
+ Classifier: Programming Language :: Python :: 3.12
9
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.12
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: jsonschema>=4.0.0
15
+ Requires-Dist: requests>=2.25.0
16
+ Requires-Dist: packaging>=20.0
17
+ Requires-Dist: docker>=7.1.0
18
+ Requires-Dist: pydantic>=2.0.0
19
+ Requires-Dist: hatch-validator>=0.8.0
20
+ Provides-Extra: docs
21
+ Requires-Dist: mkdocs>=1.4.0; extra == "docs"
22
+ Requires-Dist: mkdocstrings[python]>=0.20.0; extra == "docs"
23
+ Provides-Extra: dev
24
+ Requires-Dist: wobble>=0.2.0; extra == "dev"
25
+ Dynamic: license-file
26
+
27
+ # Hatch
28
+
29
+ ![Hatch Logo](https://raw.githubusercontent.com/CrackingShells/Hatch/refs/heads/main/docs/resources/images/Logo/hatch_wide_dark_bg_transparent.png)
30
+
31
+ ## Introduction
32
+
33
+ Hatch is the package manager for managing Model Context Protocol (MCP) servers with environment isolation, multi-type dependency resolution, and multi-host deployment. Deploy MCP servers to Claude Desktop, VS Code, Cursor, and other platforms with automatic dependency management.
34
+
35
+ The canonical documentation is at `docs/index.md` and published at <https://hatch.readthedocs.io/en/latest/>.
36
+
37
+ ## Key Features
38
+
39
+ - **Environment Isolation** — Create separate, isolated workspaces for different projects without conflicts
40
+ - **Multi-Type Dependency Resolution** — Automatically resolve and install system packages, Python packages, Docker containers, and Hatch packages
41
+ - **Multi-Host Deployment** — Deploy MCP servers to Claude Desktop, Claude Code, VS Code, Cursor, LM Studio, and Google Gemini CLI
42
+ - **Package Validation** — Ensure packages meet schema requirements before distribution
43
+ - **Development-Focused** — Optimized for rapid development and testing of MCP server ecosystems
44
+
45
+ ## Supported MCP Hosts
46
+
47
+ Hatch supports deployment to the following MCP host platforms:
48
+
49
+ - **Claude Desktop** — Anthropic's desktop application for Claude with native MCP support
50
+ - **Claude Code** — Claude integration for VS Code with MCP capabilities
51
+ - **VS Code** — Visual Studio Code with the MCP extension for tool integration
52
+ - **Cursor** — AI-first code editor with built-in MCP server support
53
+ - **LM Studio** — Local LLM inference platform with MCP server integration
54
+ - **Google Gemini CLI** — Command-line interface for Google's Gemini model with MCP support
55
+
56
+ ## Quick Start
57
+
58
+ ### Install from PyPI
59
+
60
+ ```bash
61
+ pip install hatch-xclam
62
+ ```
63
+
64
+ Verify installation:
65
+
66
+ ```bash
67
+ hatch --version
68
+ ```
69
+
70
+ ### Install from source
71
+
72
+ ```bash
73
+ git clone https://github.com/CrackingShells/Hatch.git
74
+ cd Hatch
75
+ pip install -e .
76
+ ```
77
+
78
+ ### Create your first environment and *Hatch!* MCP server package
79
+
80
+ ```bash
81
+ # Create an isolated environment
82
+ hatch env create my_project
83
+
84
+ # Switch to it
85
+ hatch env use my_project
86
+
87
+ # Create a package template
88
+ hatch create my_mcp_server --description "My MCP server"
89
+
90
+ # Validate the package
91
+ hatch validate ./my_mcp_server
92
+ ```
93
+
94
+ ### Deploy MCP servers to your tools
95
+
96
+ **Package-First Deployment (Recommended)** — Add a Hatch package and automatically configure it on Claude Desktop and Cursor:
97
+
98
+ ```bash
99
+ hatch package add ./my_mcp_server --host claude-desktop,cursor
100
+ ```
101
+
102
+ **Direct Configuration (Advanced)** — Configure arbitrary MCP servers on your hosts:
103
+
104
+ ```bash
105
+ # Remote server example: GitHub MCP Server with authentication
106
+ export GIT_PAT_TOKEN=your_github_personal_access_token
107
+ hatch mcp configure github-mcp --host gemini \
108
+ --httpUrl https://api.github.com/mcp \
109
+ --header Authorization="Bearer $GIT_PAT_TOKEN"
110
+
111
+ # Local server example: Context7 via npx
112
+ hatch mcp configure context7 --host vscode \
113
+ --command npx --args "-y @upstash/context7-mcp"
114
+ ```
115
+
116
+ ## Documentation
117
+
118
+ - **[Full Documentation](https://hatch.readthedocs.io/en/latest/)** — Complete reference and guides
119
+ - **[Getting Started](./docs/articles/users/GettingStarted.md)** — Quick start for users
120
+ - **[CLI Reference](./docs/articles/users/CLIReference.md)** — All commands and options
121
+ - **[Tutorials](./docs/articles/users/tutorials/)** — Step-by-step guides from installation to package authoring
122
+ - **[MCP Host Configuration](./docs/articles/users/MCPHostConfiguration.md)** — Deploy to multiple platforms
123
+ - **[Developer Docs](./docs/articles/devs/)** — Architecture, implementation guides, and contribution guidelines
124
+ - **[Troubleshooting](./docs/articles/users/Troubleshooting/ReportIssues.md)** — Common issues and solutions
125
+
126
+ ## Contributing
127
+
128
+ We welcome contributions! See the [How to Contribute](./docs/articles/devs/contribution_guides/how_to_contribute.md) guide for details.
129
+
130
+ ### Quick start for developers
131
+
132
+ 1. **Fork and clone** the repository
133
+ 2. **Install dependencies**: `pip install -e .` and `npm install`
134
+ 3. **Create a feature branch**: `git checkout -b feat/your-feature`
135
+ 4. **Make changes** and add tests
136
+ 5. **Use conventional commits**: `npm run commit` for guided commits
137
+ 6. **Run tests**: `wobble`
138
+ 7. **Create a pull request**
139
+
140
+ We use [Conventional Commits](https://www.conventionalcommits.org/) for automated versioning. Use `npm run commit` for guided commit messages.
141
+
142
+ ## Getting Help
143
+
144
+ - Search existing [GitHub Issues](https://github.com/CrackingShells/Hatch/issues)
145
+ - Read [Troubleshooting](./docs/articles/users/Troubleshooting/ReportIssues.md) for common problems
146
+ - Check [Developer Onboarding](./docs/articles/devs/development_processes/developer_onboarding.md) for setup help
147
+
148
+ ## License
149
+
150
+ This project is licensed under the GNU Affero General Public License v3 — see `LICENSE` for details.
@@ -0,0 +1,93 @@
1
+ hatch/__init__.py,sha256=5JFQZiaZQewEWg8WktQKEdT8IeH0KstndZf27VH7sq4,594
2
+ hatch/cli_hatch.py,sha256=kwTUTUqwI0SbAmyjeRFoj5ppLG90hJf7Pb4chPb7jvI,108041
3
+ hatch/environment_manager.py,sha256=9R9PJYPKQLmWeGXBrOzXxty20la33LgCCYY8o2aMFBQ,60757
4
+ hatch/package_loader.py,sha256=Sa2JIoio1QlMT2tOGwZhC6pFJIs419cYyoodzyaTDl4,11269
5
+ hatch/python_environment_manager.py,sha256=guU3zz4_WG3ptuX_ATGCRIi_fDxNHlaQtMv3kiRSo8k,28894
6
+ hatch/registry_explorer.py,sha256=XAHUUYNUtUnHeQc4J3HInzzpZBXuYJmCYKIEWzG-dDM,6636
7
+ hatch/registry_retriever.py,sha256=e-6F_QcPVRvZfi9IxTAaWYxdE9qGZu0m8hhII1pVvM0,14524
8
+ hatch/template_generator.py,sha256=SuZyi-_JhnRLKxpSdKppeNh2FbpSLNfyEFu_IypDaVs,5467
9
+ hatch/installers/__init__.py,sha256=THz3NGO9lxFicFooY5HYuxH5u_kIrNhJkzsJnNI5Z3g,1190
10
+ hatch/installers/dependency_installation_orchestrator.py,sha256=-K8PdI8BOcAhkwDmlDoH7U2T5pGIsAySbll25e8QVBo,30221
11
+ hatch/installers/docker_installer.py,sha256=j4IJUczIHGzpCldszUdrmtONpqCtktPoQE9XY8PWUsY,21537
12
+ hatch/installers/hatch_installer.py,sha256=DL9NR_UhhlYy7zqwGBZ9OiGz7eIL8rWREiChzJoLTeQ,8483
13
+ hatch/installers/installation_context.py,sha256=TXM67kJhZZXynAfnorqZBV5-2uDOc2yfyzMqeVV6C8w,3513
14
+ hatch/installers/installer_base.py,sha256=mId6Q_DLOQPZriq3wu3BCU-ckouom3EZgbWJQqo8Of0,8295
15
+ hatch/installers/python_installer.py,sha256=MS9Q8wKjMAy7MEWk7zcAAiFgN0KzOVJFmMzXt1MSH8g,13632
16
+ hatch/installers/registry.py,sha256=ZOEEMJy_kL5LVj5Mf7s1_CIovDnUVag6nB01dEU9Xeg,6831
17
+ hatch/installers/system_installer.py,sha256=bdrmw3I9g2EU2E94-4vtJj01RhmekX9GxylU1RPT3Lk,22869
18
+ hatch/mcp_host_config/__init__.py,sha256=WtN_wZVqSrzgcSzmL00I4Qh7_MKjtRlNhWLQ4JinP1o,1683
19
+ hatch/mcp_host_config/backup.py,sha256=h3jssjEQxIsEPcpW07WSEJNcPvQ5ps-83_YtVuek-eg,16867
20
+ hatch/mcp_host_config/host_management.py,sha256=sXyGluFQpfXKggxAVvV9riGRis29JnoEM2dTWSIwb24,23905
21
+ hatch/mcp_host_config/models.py,sha256=WLAdeJc-t4zyiiHByQHYGpC55t6ViggBAs4N1ksJ6W8,24548
22
+ hatch/mcp_host_config/reporting.py,sha256=Q8UKBJRfvJTbb5PM9xwLEOh3OJjf19AKpWKxs-2622k,6889
23
+ hatch/mcp_host_config/strategies.py,sha256=deFdAbj8G6Mzs7W8fBlPMPnijxzSnQ2SS5AAx0JR6oY,20293
24
+ hatch_xclam-0.7.0.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
25
+ tests/__init__.py,sha256=4I3aQWv143Y1QY_nRIBWnY9MIL-aoQOJuVlpoPQz24E,53
26
+ tests/run_environment_tests.py,sha256=bWCr8UsPgU80SM8f_VSi0TCwDI6JNqZpvZ2W9-b2Lqk,7302
27
+ tests/test_cli_version.py,sha256=lU8TBZfzn_8AenFNXYrLMARht91fI5twBN13L-iJebc,4778
28
+ tests/test_data_utils.py,sha256=OjT4rVUxHAe-d1fIuG-4iMicM1uuadsWsKjqRzYlGtY,17752
29
+ tests/test_dependency_orchestrator_consent.py,sha256=lA9Qu-3dFdXKmU8mzOS0tjM8j0yy9qMQXJJcgEoy12g,12652
30
+ tests/test_docker_installer.py,sha256=pcWev4fGf1p-pR5T8tDswGVZqIprC86puLEl6t8yY2w,22305
31
+ tests/test_env_manip.py,sha256=f3LjBX0y0wzTDjc52QDan3Fgcgtld7CvuzH5gYKxGhs,47941
32
+ tests/test_hatch_installer.py,sha256=qHCEcKpbe0fHvkzib2rcUJUw1Z-PCRBBJhbjoyOYiVM,8231
33
+ tests/test_installer_base.py,sha256=0xZiPDMf8LeFJs2SmnYhbIgL7mgvG_HKwL1myQovEZI,11818
34
+ tests/test_mcp_atomic_operations.py,sha256=QmwUDRNZUz6b2i50yRAMBntRDaMMYZt6flHFJfVkzNE,10563
35
+ tests/test_mcp_backup_integration.py,sha256=Auw6Bx1EXGwmCA-mRIy31DRLuRWyV33eB7GJiOvIPXQ,12360
36
+ tests/test_mcp_cli_all_host_specific_args.py,sha256=xLmWCgvupfYo5Z107rYyuz4VJdgWFAWBAw7eKokSscw,11302
37
+ tests/test_mcp_cli_backup_management.py,sha256=GlUUNu5K1w8S2jTQ6YISp5KeXH5c-H9F0lJX2SG0JWM,14019
38
+ tests/test_mcp_cli_direct_management.py,sha256=NOlRGP7M3CJ6dzR9JNtqIswJaCT8WIOoy2PhKXlGqSM,21906
39
+ tests/test_mcp_cli_discovery_listing.py,sha256=kdrCU6POLyGW9ejowNV-dUVDFVseMd_vibvgIDjZUCM,26595
40
+ tests/test_mcp_cli_host_config_integration.py,sha256=dD6maHP0wHWnFZwxJ5LgSK1GsrYqB4WdicZkotqIANo,32512
41
+ tests/test_mcp_cli_package_management.py,sha256=YFMhyh3dueel1f2R5_VMNr9AewDmVrqGbU1kj5bhdeo,14590
42
+ tests/test_mcp_cli_partial_updates.py,sha256=zbzW_TfmQz7umzMdGkGmRwzstWM0bwCf0OzTscMv86Q,35785
43
+ tests/test_mcp_environment_integration.py,sha256=_VaAaHH-CyA1p0o3mc21x7QuAnLGcPF0JV2Q5ajs2Ss,23098
44
+ tests/test_mcp_host_config_backup.py,sha256=HiavPCfXRv3gCg3BZ7xiAwHREh0Kr7b5pDMGALnU_Zw,10675
45
+ tests/test_mcp_host_configuration_manager.py,sha256=TGbdPY4IRhwZtn6QwZ665Tjfja3PLYgX9N6w2JZy1BY,12248
46
+ tests/test_mcp_host_registry_decorator.py,sha256=RfluDYDan252HWxlRmjRY8j6ZVdNmomLwmW3L5whe8A,14038
47
+ tests/test_mcp_pydantic_architecture_v4.py,sha256=cVMC2EPLn6eG52B4UeOdD1j6gF93o3MOm_J-dDBx0N8,21334
48
+ tests/test_mcp_server_config_models.py,sha256=zxMsVmUTtpt57ffK7Pz2QRQtSdSeiVw8x77GGa_1yHM,9595
49
+ tests/test_mcp_server_config_type_field.py,sha256=jix0Y_5DV5wAxAooZzPZiNXXfLzH7poqwG5TVK64H-g,7748
50
+ tests/test_mcp_sync_functionality.py,sha256=7K16gdJfI74E8ngQn12YtZZvGHzqBUmbGflgjL_hyMA,12960
51
+ tests/test_mcp_user_feedback_reporting.py,sha256=k_pg4vuWSO7V50TqG8NlW4U6xur939nUpANSY7WC3rY,12339
52
+ tests/test_non_tty_integration.py,sha256=TrDOS64tmGSpBHIAfZh3FGCIcrcZmGv0X5zk777up4c,10981
53
+ tests/test_online_package_loader.py,sha256=KAGa1e9B1AZ4f0ZUXI8DAZ99ps3Y4uCC5rwB5CNJj14,9214
54
+ tests/test_python_environment_manager.py,sha256=AHEooqVL_1hDX1yKxN2Md7_rWqskxmLvw2OlnbeLwYs,38972
55
+ tests/test_python_installer.py,sha256=DXBy7hNJk5313_dDXiHTLEH7UJSPUnyGs4IEr7Hn_5E,13009
56
+ tests/test_registry.py,sha256=nFHwRIx9n8y0nHwW9j8X3DZ07Y0BLYZMKduTXo-xXTc,2261
57
+ tests/test_registry_retriever.py,sha256=6mQQuqy2tQdw4j3VOkC_DxWqtKwaCjGPgXsdL-w48Yw,10775
58
+ tests/test_system_installer.py,sha256=bWuyEKakhvi51iM8xHJh62zv83HUTd8QnPlqUUMWx9c,28102
59
+ tests/test_data/packages/basic/base_pkg/hatch_mcp_server.py,sha256=nn9XJQz7Owq_AKZ35bUV-l5eThauxTvIQZdQmcZqbQg,350
60
+ tests/test_data/packages/basic/base_pkg/mcp_server.py,sha256=gzXj-n0NbcS1TF-ebKOdXQRyuVIC0Gn_b8ZB-9RckrM,422
61
+ tests/test_data/packages/basic/base_pkg_v2/hatch_mcp_server.py,sha256=VmGpeLPpsNyFyePNtcRQCSscLOHdZgXsGDulA4_9CJA,356
62
+ tests/test_data/packages/basic/base_pkg_v2/mcp_server.py,sha256=73NQIbSaJ9Ou7UTASW-jr1BmGBvPJVQAZdTOESFlmMo,437
63
+ tests/test_data/packages/basic/utility_pkg/hatch_mcp_server.py,sha256=7JkdHdsudXgfcVc8oDOUY2lm2HsZVNYynAMHvF-6o0Q,356
64
+ tests/test_data/packages/basic/utility_pkg/mcp_server.py,sha256=bciy9KS6xfXEClf0MhKEV2ov6cPX0UrSxRjbwZoqGSk,437
65
+ tests/test_data/packages/dependencies/complex_dep_pkg/hatch_mcp_server.py,sha256=4tsMAwqBlLQnVK-o2zCKQJdFdK_Gf-wa-WnzDGkZYTs,364
66
+ tests/test_data/packages/dependencies/complex_dep_pkg/mcp_server.py,sha256=-uPYTLNwxy-ESddSr3WtJGB5jlQXzyv-hPTj-8kKvTw,457
67
+ tests/test_data/packages/dependencies/docker_dep_pkg/hatch_mcp_server.py,sha256=UdAwxCqNdkJfT9eAKsJXRhn08Fr0mV1whMQ04Js8lRw,362
68
+ tests/test_data/packages/dependencies/docker_dep_pkg/mcp_server.py,sha256=NIV5QJdq8VYN9MI5E7-ly9qWyhbYEvwfwXMfkOWmnk8,452
69
+ tests/test_data/packages/dependencies/mixed_dep_pkg/hatch_mcp_server.py,sha256=ME3U787o6-WViUWrWh7TpI9XSnMl1gBD-_4Jgu2WjgA,360
70
+ tests/test_data/packages/dependencies/mixed_dep_pkg/mcp_server.py,sha256=6Pa1bIp_FsEBhWDXQAfCCC35l6LPeDzh79zVmMgvSAc,447
71
+ tests/test_data/packages/dependencies/python_dep_pkg/hatch_mcp_server.py,sha256=2ACrRr-uSt6VhVVjEcQ79yOk7Y9pUzH27TdlYJ1OY3A,362
72
+ tests/test_data/packages/dependencies/python_dep_pkg/mcp_server.py,sha256=s_z_0-w0XiqU45Ujzrn62YoTHWH-x_jKq88dh8hPHgs,452
73
+ tests/test_data/packages/dependencies/simple_dep_pkg/hatch_mcp_server.py,sha256=d-h1olfMIn8OBn8FKMcljerBqTXSNYpBl0NrPsulGEA,362
74
+ tests/test_data/packages/dependencies/simple_dep_pkg/mcp_server.py,sha256=T1rMSjhu91oo0EKdUjd6J6WYWiwAA69t6MgjrUnEkLU,452
75
+ tests/test_data/packages/dependencies/system_dep_pkg/hatch_mcp_server.py,sha256=CzykT89AkO2ROYQPncFdLSaLtOTcMZA-DPqgARJllOA,362
76
+ tests/test_data/packages/dependencies/system_dep_pkg/mcp_server.py,sha256=1B67KE5GwrQiA2wx5fDiNslz-0o1LmLzt5m3Mgihx0E,452
77
+ tests/test_data/packages/error_scenarios/circular_dep_pkg/hatch_mcp_server.py,sha256=1-j-7YRZ0LB5UlTXpg4st2HGmnuY7tvWb25y8sgvZjc,366
78
+ tests/test_data/packages/error_scenarios/circular_dep_pkg/mcp_server.py,sha256=JnQW_659fc7YoNxo-SkAfOt0X34rvtsx37rUKbW7X9E,462
79
+ tests/test_data/packages/error_scenarios/circular_dep_pkg_b/hatch_mcp_server.py,sha256=b4cim_becARqQWBZVVgruBtecdJdL6ggLSSii-mbrXo,370
80
+ tests/test_data/packages/error_scenarios/circular_dep_pkg_b/mcp_server.py,sha256=xfR3F8rhlI4ERaKu7XX3kjawVMaJ1D07ufEKYpx2_ss,472
81
+ tests/test_data/packages/error_scenarios/invalid_dep_pkg/hatch_mcp_server.py,sha256=V5Mj7zQmQzB2O-tVjQ4u8RICCXYHOWV05ThJotPk87E,364
82
+ tests/test_data/packages/error_scenarios/invalid_dep_pkg/mcp_server.py,sha256=6e8_sbaCfe94rN1qrthHUZvBm8LpSc2l_3d0LMefDh8,457
83
+ tests/test_data/packages/error_scenarios/version_conflict_pkg/hatch_mcp_server.py,sha256=5QsMT3FgqPi4RUEIn1JlMKhIip3Mb9Ctm_yAUZo5cWE,374
84
+ tests/test_data/packages/error_scenarios/version_conflict_pkg/mcp_server.py,sha256=3H14Ys_jt8YVH8685d47lVPDudIICzFiwZxUrgXuP38,482
85
+ tests/test_data/packages/schema_versions/schema_v1_1_0_pkg/main.py,sha256=_B5aqXK4ZgCKc2R6907s1UyCgAvelczcbC_ZOzednHc,238
86
+ tests/test_data/packages/schema_versions/schema_v1_2_0_pkg/main.py,sha256=rinhVySJpjXKd2sRCS0ps7xTrVqImWcZ8l4aYbidYR8,238
87
+ tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/hatch_mcp_server.py,sha256=FT14llzHlA4i8I__8GugzBRowhg_CbLmsOwjq0IWFsY,368
88
+ tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/mcp_server.py,sha256=BRPAyyAseE2CGR3W647SwjlluYfi7ejhZck0An5581I,467
89
+ hatch_xclam-0.7.0.dist-info/METADATA,sha256=By-lZCNqpsAd4wmyyHMTnGr7NmME6ulfBAxKw0ljliU,5843
90
+ hatch_xclam-0.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
91
+ hatch_xclam-0.7.0.dist-info/entry_points.txt,sha256=6xbkwFUtr7nRa56vUFMyJk2wjwFQ_XVaU53ruecWKI0,47
92
+ hatch_xclam-0.7.0.dist-info/top_level.txt,sha256=GZP3Ivciwal8jVITQkQr7dSNlLJRzfNOhA76VN7Jp4Y,12
93
+ hatch_xclam-0.7.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ hatch = hatch.cli_hatch:main