hatch-xclam 0.7.0__tar.gz → 0.7.0.dev11__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 (160) hide show
  1. hatch_xclam-0.7.0.dev11/PKG-INFO +103 -0
  2. hatch_xclam-0.7.0.dev11/README.md +77 -0
  3. hatch_xclam-0.7.0.dev11/hatch_xclam.egg-info/PKG-INFO +103 -0
  4. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch_xclam.egg-info/SOURCES.txt +118 -0
  5. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch_xclam.egg-info/top_level.txt +2 -0
  6. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
  7. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
  8. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
  9. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1272 -0
  10. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
  11. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
  12. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +152 -0
  13. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +270 -0
  14. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
  15. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +704 -0
  16. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +709 -0
  17. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +173 -0
  18. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
  19. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
  20. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
  21. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
  22. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +805 -0
  23. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1172 -0
  24. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1319 -0
  25. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +128 -0
  26. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +104 -0
  27. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +462 -0
  28. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
  29. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +56 -0
  30. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2745 -0
  31. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3976 -0
  32. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
  33. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2965 -0
  34. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +67 -0
  35. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
  36. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +26 -0
  37. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3112 -0
  38. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +99 -0
  39. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +767 -0
  40. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1260 -0
  41. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
  42. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
  43. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
  44. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1939 -0
  45. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation_test.py +54 -0
  46. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +303 -0
  47. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3196 -0
  48. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
  49. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
  50. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
  51. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
  52. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
  53. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
  54. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
  55. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
  56. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
  57. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
  58. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
  59. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
  60. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
  61. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
  62. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
  63. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
  64. hatch_xclam-0.7.0.dev11/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
  65. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/pyproject.toml +1 -1
  66. hatch_xclam-0.7.0/PKG-INFO +0 -150
  67. hatch_xclam-0.7.0/README.md +0 -124
  68. hatch_xclam-0.7.0/hatch_xclam.egg-info/PKG-INFO +0 -150
  69. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/LICENSE +0 -0
  70. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/__init__.py +0 -0
  71. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/cli_hatch.py +0 -0
  72. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/environment_manager.py +0 -0
  73. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/__init__.py +0 -0
  74. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/dependency_installation_orchestrator.py +0 -0
  75. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/docker_installer.py +0 -0
  76. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/hatch_installer.py +0 -0
  77. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/installation_context.py +0 -0
  78. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/installer_base.py +0 -0
  79. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/python_installer.py +0 -0
  80. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/registry.py +0 -0
  81. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/installers/system_installer.py +0 -0
  82. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/mcp_host_config/__init__.py +0 -0
  83. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/mcp_host_config/backup.py +0 -0
  84. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/mcp_host_config/host_management.py +0 -0
  85. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/mcp_host_config/models.py +0 -0
  86. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/mcp_host_config/reporting.py +0 -0
  87. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/mcp_host_config/strategies.py +0 -0
  88. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/package_loader.py +0 -0
  89. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/python_environment_manager.py +0 -0
  90. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/registry_explorer.py +0 -0
  91. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/registry_retriever.py +0 -0
  92. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch/template_generator.py +0 -0
  93. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch_xclam.egg-info/dependency_links.txt +0 -0
  94. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch_xclam.egg-info/entry_points.txt +0 -0
  95. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/hatch_xclam.egg-info/requires.txt +0 -0
  96. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/setup.cfg +0 -0
  97. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/__init__.py +0 -0
  98. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/run_environment_tests.py +0 -0
  99. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_cli_version.py +0 -0
  100. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/basic/base_pkg/hatch_mcp_server.py +0 -0
  101. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/basic/base_pkg/mcp_server.py +0 -0
  102. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/basic/base_pkg_v2/hatch_mcp_server.py +0 -0
  103. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/basic/base_pkg_v2/mcp_server.py +0 -0
  104. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/basic/utility_pkg/hatch_mcp_server.py +0 -0
  105. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/basic/utility_pkg/mcp_server.py +0 -0
  106. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/complex_dep_pkg/hatch_mcp_server.py +0 -0
  107. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/complex_dep_pkg/mcp_server.py +0 -0
  108. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/docker_dep_pkg/hatch_mcp_server.py +0 -0
  109. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/docker_dep_pkg/mcp_server.py +0 -0
  110. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/mixed_dep_pkg/hatch_mcp_server.py +0 -0
  111. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/mixed_dep_pkg/mcp_server.py +0 -0
  112. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/python_dep_pkg/hatch_mcp_server.py +0 -0
  113. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/python_dep_pkg/mcp_server.py +0 -0
  114. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/simple_dep_pkg/hatch_mcp_server.py +0 -0
  115. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/simple_dep_pkg/mcp_server.py +0 -0
  116. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/system_dep_pkg/hatch_mcp_server.py +0 -0
  117. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/dependencies/system_dep_pkg/mcp_server.py +0 -0
  118. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/error_scenarios/circular_dep_pkg/hatch_mcp_server.py +0 -0
  119. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/error_scenarios/circular_dep_pkg/mcp_server.py +0 -0
  120. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/error_scenarios/circular_dep_pkg_b/hatch_mcp_server.py +0 -0
  121. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/error_scenarios/circular_dep_pkg_b/mcp_server.py +0 -0
  122. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/error_scenarios/invalid_dep_pkg/hatch_mcp_server.py +0 -0
  123. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/error_scenarios/invalid_dep_pkg/mcp_server.py +0 -0
  124. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/error_scenarios/version_conflict_pkg/hatch_mcp_server.py +0 -0
  125. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/error_scenarios/version_conflict_pkg/mcp_server.py +0 -0
  126. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/schema_versions/schema_v1_1_0_pkg/main.py +0 -0
  127. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/schema_versions/schema_v1_2_0_pkg/main.py +0 -0
  128. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/hatch_mcp_server.py +0 -0
  129. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/mcp_server.py +0 -0
  130. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_data_utils.py +0 -0
  131. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_dependency_orchestrator_consent.py +0 -0
  132. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_docker_installer.py +0 -0
  133. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_env_manip.py +0 -0
  134. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_hatch_installer.py +0 -0
  135. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_installer_base.py +0 -0
  136. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_atomic_operations.py +0 -0
  137. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_backup_integration.py +0 -0
  138. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_cli_all_host_specific_args.py +0 -0
  139. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_cli_backup_management.py +0 -0
  140. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_cli_direct_management.py +0 -0
  141. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_cli_discovery_listing.py +0 -0
  142. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_cli_host_config_integration.py +0 -0
  143. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_cli_package_management.py +0 -0
  144. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_cli_partial_updates.py +0 -0
  145. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_environment_integration.py +0 -0
  146. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_host_config_backup.py +0 -0
  147. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_host_configuration_manager.py +0 -0
  148. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_host_registry_decorator.py +0 -0
  149. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_pydantic_architecture_v4.py +0 -0
  150. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_server_config_models.py +0 -0
  151. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_server_config_type_field.py +0 -0
  152. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_sync_functionality.py +0 -0
  153. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_mcp_user_feedback_reporting.py +0 -0
  154. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_non_tty_integration.py +0 -0
  155. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_online_package_loader.py +0 -0
  156. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_python_environment_manager.py +0 -0
  157. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_python_installer.py +0 -0
  158. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_registry.py +0 -0
  159. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_registry_retriever.py +0 -0
  160. {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev11}/tests/test_system_installer.py +0 -0
@@ -0,0 +1,103 @@
1
+ Metadata-Version: 2.4
2
+ Name: hatch-xclam
3
+ Version: 0.7.0.dev11
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](./docs/resources/images/Logo/hatch_wide_dark_bg_transparent.png)
30
+
31
+ Hatch is the package manager for the Cracking Shells ecosystem. The documentation in `docs/index.md` is the canonical, up-to-date entry point for users and contributors — this README is a short pointer to those resources.
32
+
33
+ ## Quick links
34
+
35
+ The major documentation entry points are:
36
+
37
+ - Documentation (canonical): `docs/index.md`
38
+ - Getting started (users): `docs/articles/users/GettingStarted.md`
39
+ - CLI reference: `docs/articles/users/CLIReference.md`
40
+ - Developer docs and architecture: `docs/articles/devs/index.md`
41
+
42
+ But, really, just look at the site: <https://crackingshells.github.io/Hatch/>
43
+
44
+ ## Quick start
45
+
46
+ ### Install from source
47
+
48
+ ```bash
49
+ git clone https://github.com/CrackingShells/Hatch.git
50
+ cd Hatch
51
+ pip install -e .
52
+ ```
53
+
54
+ Verify installation:
55
+
56
+ ```bash
57
+ hatch --version
58
+ ```
59
+
60
+ ### Create a package template
61
+
62
+ ```bash
63
+ hatch create my_package --description "My MCP server package"
64
+ ```
65
+
66
+ ## Contributing
67
+
68
+ We welcome contributions! Please see our [Contributing Guide](./CONTRIBUTING.md) for details.
69
+
70
+ ### Quick Start
71
+
72
+ 1. **Fork and clone** the repository
73
+ 2. **Install dependencies**: `pip install -e .` and `npm install`
74
+ 3. **Create a feature branch**: `git checkout -b feat/your-feature`
75
+ 4. **Make changes** and add tests
76
+ 5. **Use conventional commits**: `npm run commit` for guided commits
77
+ 6. **Run tests**: `python -c "import hatch; print('Hatch package imports successfully')"`
78
+ 7. **Create a pull request**
79
+
80
+ ### Commit Messages
81
+
82
+ We use [Conventional Commits](https://www.conventionalcommits.org/) for automated versioning:
83
+
84
+ ```bash
85
+ feat: add new feature
86
+ fix: resolve bug
87
+ docs: update documentation
88
+ test: add tests
89
+ chore: maintenance tasks
90
+ ```
91
+
92
+ Use `npm run commit` for guided commit messages.
93
+
94
+ For detailed guidelines, see [CONTRIBUTING.md](./CONTRIBUTING.md).
95
+
96
+ ## Getting Help
97
+
98
+ - Read developer onboarding and contribution guides in `docs/articles/devs/`
99
+ - Report issues or feature requests on the GitHub repository: <https://github.com/CrackingShells/Hatch/issues>
100
+
101
+ ## License
102
+
103
+ This project is licensed under the GNU Affero General Public License v3 — see `LICENSE` for details.
@@ -0,0 +1,77 @@
1
+ # Hatch
2
+
3
+ ![Hatch Logo](./docs/resources/images/Logo/hatch_wide_dark_bg_transparent.png)
4
+
5
+ Hatch is the package manager for the Cracking Shells ecosystem. The documentation in `docs/index.md` is the canonical, up-to-date entry point for users and contributors — this README is a short pointer to those resources.
6
+
7
+ ## Quick links
8
+
9
+ The major documentation entry points are:
10
+
11
+ - Documentation (canonical): `docs/index.md`
12
+ - Getting started (users): `docs/articles/users/GettingStarted.md`
13
+ - CLI reference: `docs/articles/users/CLIReference.md`
14
+ - Developer docs and architecture: `docs/articles/devs/index.md`
15
+
16
+ But, really, just look at the site: <https://crackingshells.github.io/Hatch/>
17
+
18
+ ## Quick start
19
+
20
+ ### Install from source
21
+
22
+ ```bash
23
+ git clone https://github.com/CrackingShells/Hatch.git
24
+ cd Hatch
25
+ pip install -e .
26
+ ```
27
+
28
+ Verify installation:
29
+
30
+ ```bash
31
+ hatch --version
32
+ ```
33
+
34
+ ### Create a package template
35
+
36
+ ```bash
37
+ hatch create my_package --description "My MCP server package"
38
+ ```
39
+
40
+ ## Contributing
41
+
42
+ We welcome contributions! Please see our [Contributing Guide](./CONTRIBUTING.md) for details.
43
+
44
+ ### Quick Start
45
+
46
+ 1. **Fork and clone** the repository
47
+ 2. **Install dependencies**: `pip install -e .` and `npm install`
48
+ 3. **Create a feature branch**: `git checkout -b feat/your-feature`
49
+ 4. **Make changes** and add tests
50
+ 5. **Use conventional commits**: `npm run commit` for guided commits
51
+ 6. **Run tests**: `python -c "import hatch; print('Hatch package imports successfully')"`
52
+ 7. **Create a pull request**
53
+
54
+ ### Commit Messages
55
+
56
+ We use [Conventional Commits](https://www.conventionalcommits.org/) for automated versioning:
57
+
58
+ ```bash
59
+ feat: add new feature
60
+ fix: resolve bug
61
+ docs: update documentation
62
+ test: add tests
63
+ chore: maintenance tasks
64
+ ```
65
+
66
+ Use `npm run commit` for guided commit messages.
67
+
68
+ For detailed guidelines, see [CONTRIBUTING.md](./CONTRIBUTING.md).
69
+
70
+ ## Getting Help
71
+
72
+ - Read developer onboarding and contribution guides in `docs/articles/devs/`
73
+ - Report issues or feature requests on the GitHub repository: <https://github.com/CrackingShells/Hatch/issues>
74
+
75
+ ## License
76
+
77
+ This project is licensed under the GNU Affero General Public License v3 — see `LICENSE` for details.
@@ -0,0 +1,103 @@
1
+ Metadata-Version: 2.4
2
+ Name: hatch-xclam
3
+ Version: 0.7.0.dev11
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](./docs/resources/images/Logo/hatch_wide_dark_bg_transparent.png)
30
+
31
+ Hatch is the package manager for the Cracking Shells ecosystem. The documentation in `docs/index.md` is the canonical, up-to-date entry point for users and contributors — this README is a short pointer to those resources.
32
+
33
+ ## Quick links
34
+
35
+ The major documentation entry points are:
36
+
37
+ - Documentation (canonical): `docs/index.md`
38
+ - Getting started (users): `docs/articles/users/GettingStarted.md`
39
+ - CLI reference: `docs/articles/users/CLIReference.md`
40
+ - Developer docs and architecture: `docs/articles/devs/index.md`
41
+
42
+ But, really, just look at the site: <https://crackingshells.github.io/Hatch/>
43
+
44
+ ## Quick start
45
+
46
+ ### Install from source
47
+
48
+ ```bash
49
+ git clone https://github.com/CrackingShells/Hatch.git
50
+ cd Hatch
51
+ pip install -e .
52
+ ```
53
+
54
+ Verify installation:
55
+
56
+ ```bash
57
+ hatch --version
58
+ ```
59
+
60
+ ### Create a package template
61
+
62
+ ```bash
63
+ hatch create my_package --description "My MCP server package"
64
+ ```
65
+
66
+ ## Contributing
67
+
68
+ We welcome contributions! Please see our [Contributing Guide](./CONTRIBUTING.md) for details.
69
+
70
+ ### Quick Start
71
+
72
+ 1. **Fork and clone** the repository
73
+ 2. **Install dependencies**: `pip install -e .` and `npm install`
74
+ 3. **Create a feature branch**: `git checkout -b feat/your-feature`
75
+ 4. **Make changes** and add tests
76
+ 5. **Use conventional commits**: `npm run commit` for guided commits
77
+ 6. **Run tests**: `python -c "import hatch; print('Hatch package imports successfully')"`
78
+ 7. **Create a pull request**
79
+
80
+ ### Commit Messages
81
+
82
+ We use [Conventional Commits](https://www.conventionalcommits.org/) for automated versioning:
83
+
84
+ ```bash
85
+ feat: add new feature
86
+ fix: resolve bug
87
+ docs: update documentation
88
+ test: add tests
89
+ chore: maintenance tasks
90
+ ```
91
+
92
+ Use `npm run commit` for guided commit messages.
93
+
94
+ For detailed guidelines, see [CONTRIBUTING.md](./CONTRIBUTING.md).
95
+
96
+ ## Getting Help
97
+
98
+ - Read developer onboarding and contribution guides in `docs/articles/devs/`
99
+ - Report issues or feature requests on the GitHub repository: <https://github.com/CrackingShells/Hatch/issues>
100
+
101
+ ## License
102
+
103
+ This project is licensed under the GNU Affero General Public License v3 — see `LICENSE` for details.
@@ -24,6 +24,65 @@ pyproject.toml
24
24
  ./hatch/mcp_host_config/models.py
25
25
  ./hatch/mcp_host_config/reporting.py
26
26
  ./hatch/mcp_host_config/strategies.py
27
+ ./node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py
28
+ ./node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py
29
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py
30
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py
31
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py
32
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py
33
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py
34
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py
35
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py
36
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py
37
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py
38
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py
39
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py
40
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py
41
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py
42
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py
43
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py
44
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py
45
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py
46
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py
47
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py
48
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py
49
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py
50
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py
51
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation_test.py
52
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py
53
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py
54
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py
55
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py
56
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py
57
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py
58
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py
59
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py
60
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py
61
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py
62
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py
63
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py
64
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
65
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py
66
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py
67
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py
68
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py
69
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py
70
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py
71
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py
72
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py
73
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py
74
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py
75
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py
76
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py
77
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py
78
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py
79
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py
80
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed
81
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py
82
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py
83
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py
84
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py
85
+ ./node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py
27
86
  ./tests/__init__.py
28
87
  ./tests/run_environment_tests.py
29
88
  ./tests/test_cli_version.py
@@ -117,6 +176,65 @@ hatch_xclam.egg-info/dependency_links.txt
117
176
  hatch_xclam.egg-info/entry_points.txt
118
177
  hatch_xclam.egg-info/requires.txt
119
178
  hatch_xclam.egg-info/top_level.txt
179
+ node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py
180
+ node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py
181
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py
182
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py
183
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py
184
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py
185
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py
186
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py
187
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py
188
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py
189
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py
190
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py
191
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py
192
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py
193
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py
194
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py
195
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py
196
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py
197
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py
198
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py
199
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py
200
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py
201
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py
202
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py
203
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation_test.py
204
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py
205
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py
206
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py
207
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py
208
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py
209
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py
210
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py
211
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py
212
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py
213
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py
214
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py
215
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py
216
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
217
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py
218
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py
219
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py
220
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py
221
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py
222
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py
223
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py
224
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py
225
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py
226
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py
227
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py
228
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py
229
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py
230
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py
231
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py
232
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed
233
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py
234
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py
235
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py
236
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py
237
+ node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py
120
238
  tests/__init__.py
121
239
  tests/run_environment_tests.py
122
240
  tests/test_cli_version.py
@@ -1,5 +1,7 @@
1
+ __temp__
1
2
  cracking-shells-playbook
2
3
  dist
3
4
  docs
4
5
  hatch
6
+ node_modules
5
7
  tests
@@ -0,0 +1,45 @@
1
+ #!/usr/bin/env python3
2
+
3
+ # Copyright (c) 2009 Google Inc. All rights reserved.
4
+ # Use of this source code is governed by a BSD-style license that can be
5
+ # found in the LICENSE file.
6
+
7
+ import os
8
+ import subprocess
9
+ import sys
10
+
11
+
12
+ def IsCygwin():
13
+ # Function copied from pylib/gyp/common.py
14
+ try:
15
+ out = subprocess.Popen(
16
+ "uname", stdout=subprocess.PIPE, stderr=subprocess.STDOUT
17
+ )
18
+ stdout, _ = out.communicate()
19
+ return "CYGWIN" in stdout.decode("utf-8")
20
+ except Exception:
21
+ return False
22
+
23
+
24
+ def UnixifyPath(path):
25
+ try:
26
+ if not IsCygwin():
27
+ return path
28
+ out = subprocess.Popen(
29
+ ["cygpath", "-u", path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
30
+ )
31
+ stdout, _ = out.communicate()
32
+ return stdout.decode("utf-8")
33
+ except Exception:
34
+ return path
35
+
36
+
37
+ # Make sure we're using the version of pylib in this repo, not one installed
38
+ # elsewhere on the system. Also convert to Unix style path on Cygwin systems,
39
+ # else the 'gyp' library will not be found
40
+ path = UnixifyPath(sys.argv[0])
41
+ sys.path.insert(0, os.path.join(os.path.dirname(path), "pylib"))
42
+ import gyp # noqa: E402
43
+
44
+ if __name__ == "__main__":
45
+ sys.exit(gyp.script_main())