hatch-xclam 0.7.0__tar.gz → 0.7.0.dev12__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.0/hatch_xclam.egg-info → hatch_xclam-0.7.0.dev12}/PKG-INFO +32 -38
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/README.md +31 -37
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12/hatch_xclam.egg-info}/PKG-INFO +32 -38
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch_xclam.egg-info/SOURCES.txt +118 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch_xclam.egg-info/top_level.txt +2 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1272 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +152 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +270 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +704 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +709 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +173 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +805 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1172 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1319 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +128 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +104 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +462 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +56 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2745 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3976 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2965 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +67 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +26 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3112 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +99 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +767 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1260 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1939 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation_test.py +54 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +303 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3196 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
- hatch_xclam-0.7.0.dev12/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/pyproject.toml +1 -1
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/LICENSE +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/__init__.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/cli_hatch.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/environment_manager.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/__init__.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/dependency_installation_orchestrator.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/docker_installer.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/hatch_installer.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/installation_context.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/installer_base.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/python_installer.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/registry.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/installers/system_installer.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/mcp_host_config/__init__.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/mcp_host_config/backup.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/mcp_host_config/host_management.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/mcp_host_config/models.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/mcp_host_config/reporting.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/mcp_host_config/strategies.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/package_loader.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/python_environment_manager.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/registry_explorer.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/registry_retriever.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch/template_generator.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch_xclam.egg-info/dependency_links.txt +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch_xclam.egg-info/entry_points.txt +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/hatch_xclam.egg-info/requires.txt +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/setup.cfg +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/__init__.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/run_environment_tests.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_cli_version.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/basic/base_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/basic/base_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/basic/base_pkg_v2/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/basic/base_pkg_v2/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/basic/utility_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/basic/utility_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/complex_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/complex_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/docker_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/docker_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/mixed_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/mixed_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/python_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/python_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/simple_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/simple_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/system_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/dependencies/system_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/error_scenarios/circular_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/error_scenarios/circular_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/error_scenarios/circular_dep_pkg_b/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/error_scenarios/circular_dep_pkg_b/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/error_scenarios/invalid_dep_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/error_scenarios/invalid_dep_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/error_scenarios/version_conflict_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/error_scenarios/version_conflict_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/schema_versions/schema_v1_1_0_pkg/main.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/schema_versions/schema_v1_2_0_pkg/main.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/hatch_mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data/packages/schema_versions/schema_v1_2_1_pkg/mcp_server.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_data_utils.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_dependency_orchestrator_consent.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_docker_installer.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_env_manip.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_hatch_installer.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_installer_base.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_atomic_operations.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_backup_integration.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_cli_all_host_specific_args.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_cli_backup_management.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_cli_direct_management.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_cli_discovery_listing.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_cli_host_config_integration.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_cli_package_management.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_cli_partial_updates.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_environment_integration.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_host_config_backup.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_host_configuration_manager.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_host_registry_decorator.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_pydantic_architecture_v4.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_server_config_models.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_server_config_type_field.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_sync_functionality.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_mcp_user_feedback_reporting.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_non_tty_integration.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_online_package_loader.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_python_environment_manager.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_python_installer.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_registry.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/tests/test_registry_retriever.py +0 -0
- {hatch_xclam-0.7.0 → hatch_xclam-0.7.0.dev12}/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.0
|
|
3
|
+
Version: 0.7.0.dev12
|
|
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
|
|
@@ -26,34 +26,13 @@ Dynamic: license-file
|
|
|
26
26
|
|
|
27
27
|
# Hatch
|
|
28
28
|
|
|
29
|
-

|
|
30
30
|
|
|
31
|
-
|
|
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.
|
|
31
|
+
Hatch is the package manager for the Cracking Shells ecosystem, designed specifically for managing Model Context Protocol (MCP) servers. It handles complex dependency resolution across system packages, Python packages, Docker containers, and other Hatch packages — all in isolated environments.
|
|
34
32
|
|
|
35
33
|
The canonical documentation is at `docs/index.md` and published at <https://hatch.readthedocs.io/en/latest/>.
|
|
36
34
|
|
|
37
|
-
##
|
|
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
|
|
35
|
+
## Quick start
|
|
57
36
|
|
|
58
37
|
### Install from PyPI
|
|
59
38
|
|
|
@@ -93,26 +72,41 @@ hatch validate ./my_mcp_server
|
|
|
93
72
|
|
|
94
73
|
### Deploy MCP servers to your tools
|
|
95
74
|
|
|
96
|
-
|
|
75
|
+
Add a Hatch package and automatically configure it on Claude Desktop and Cursor:
|
|
97
76
|
|
|
98
77
|
```bash
|
|
99
78
|
hatch package add ./my_mcp_server --host claude-desktop,cursor
|
|
100
79
|
```
|
|
101
80
|
|
|
102
|
-
|
|
81
|
+
Configure an arbitrary MCP server (non-Hatch package) on Claude Desktop:
|
|
103
82
|
|
|
104
83
|
```bash
|
|
105
|
-
#
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
--
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
--
|
|
84
|
+
# Local server with command and arguments
|
|
85
|
+
hatch mcp configure my-weather-server --host claude-desktop \
|
|
86
|
+
--command python --args weather_server.py \
|
|
87
|
+
--env-var API_KEY=your_key
|
|
88
|
+
|
|
89
|
+
# Remote server with URL
|
|
90
|
+
hatch mcp configure api-server --host gemini \
|
|
91
|
+
--httpUrl https://api.example.com \
|
|
92
|
+
--header Authorization="Bearer token"
|
|
114
93
|
```
|
|
115
94
|
|
|
95
|
+
List configured servers and hosts:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
hatch mcp list servers
|
|
99
|
+
hatch mcp list hosts --detailed
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Key features
|
|
103
|
+
|
|
104
|
+
- **Environment isolation**: Create separate workspaces for different projects
|
|
105
|
+
- **Multi-type dependencies**: Automatically resolve and install system packages, Python packages, Docker containers, and Hatch packages
|
|
106
|
+
- **MCP host configuration**: Deploy MCP servers to Claude Desktop, Cursor, VSCode, and other platforms
|
|
107
|
+
- **Package validation**: Ensure packages meet schema requirements before distribution
|
|
108
|
+
- **Development-focused**: Optimized for rapid development and testing of MCP server ecosystems
|
|
109
|
+
|
|
116
110
|
## Documentation
|
|
117
111
|
|
|
118
112
|
- **[Full Documentation](https://hatch.readthedocs.io/en/latest/)** — Complete reference and guides
|
|
@@ -134,12 +128,12 @@ We welcome contributions! See the [How to Contribute](./docs/articles/devs/contr
|
|
|
134
128
|
3. **Create a feature branch**: `git checkout -b feat/your-feature`
|
|
135
129
|
4. **Make changes** and add tests
|
|
136
130
|
5. **Use conventional commits**: `npm run commit` for guided commits
|
|
137
|
-
6. **Run tests**: `
|
|
131
|
+
6. **Run tests**: `python -m pytest tests/`
|
|
138
132
|
7. **Create a pull request**
|
|
139
133
|
|
|
140
134
|
We use [Conventional Commits](https://www.conventionalcommits.org/) for automated versioning. Use `npm run commit` for guided commit messages.
|
|
141
135
|
|
|
142
|
-
## Getting
|
|
136
|
+
## Getting help
|
|
143
137
|
|
|
144
138
|
- Search existing [GitHub Issues](https://github.com/CrackingShells/Hatch/issues)
|
|
145
139
|
- Read [Troubleshooting](./docs/articles/users/Troubleshooting/ReportIssues.md) for common problems
|
|
@@ -1,33 +1,12 @@
|
|
|
1
1
|
# Hatch
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
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.
|
|
5
|
+
Hatch is the package manager for the Cracking Shells ecosystem, designed specifically for managing Model Context Protocol (MCP) servers. It handles complex dependency resolution across system packages, Python packages, Docker containers, and other Hatch packages — all in isolated environments.
|
|
8
6
|
|
|
9
7
|
The canonical documentation is at `docs/index.md` and published at <https://hatch.readthedocs.io/en/latest/>.
|
|
10
8
|
|
|
11
|
-
##
|
|
12
|
-
|
|
13
|
-
- **Environment Isolation** — Create separate, isolated workspaces for different projects without conflicts
|
|
14
|
-
- **Multi-Type Dependency Resolution** — Automatically resolve and install system packages, Python packages, Docker containers, and Hatch packages
|
|
15
|
-
- **Multi-Host Deployment** — Deploy MCP servers to Claude Desktop, Claude Code, VS Code, Cursor, LM Studio, and Google Gemini CLI
|
|
16
|
-
- **Package Validation** — Ensure packages meet schema requirements before distribution
|
|
17
|
-
- **Development-Focused** — Optimized for rapid development and testing of MCP server ecosystems
|
|
18
|
-
|
|
19
|
-
## Supported MCP Hosts
|
|
20
|
-
|
|
21
|
-
Hatch supports deployment to the following MCP host platforms:
|
|
22
|
-
|
|
23
|
-
- **Claude Desktop** — Anthropic's desktop application for Claude with native MCP support
|
|
24
|
-
- **Claude Code** — Claude integration for VS Code with MCP capabilities
|
|
25
|
-
- **VS Code** — Visual Studio Code with the MCP extension for tool integration
|
|
26
|
-
- **Cursor** — AI-first code editor with built-in MCP server support
|
|
27
|
-
- **LM Studio** — Local LLM inference platform with MCP server integration
|
|
28
|
-
- **Google Gemini CLI** — Command-line interface for Google's Gemini model with MCP support
|
|
29
|
-
|
|
30
|
-
## Quick Start
|
|
9
|
+
## Quick start
|
|
31
10
|
|
|
32
11
|
### Install from PyPI
|
|
33
12
|
|
|
@@ -67,26 +46,41 @@ hatch validate ./my_mcp_server
|
|
|
67
46
|
|
|
68
47
|
### Deploy MCP servers to your tools
|
|
69
48
|
|
|
70
|
-
|
|
49
|
+
Add a Hatch package and automatically configure it on Claude Desktop and Cursor:
|
|
71
50
|
|
|
72
51
|
```bash
|
|
73
52
|
hatch package add ./my_mcp_server --host claude-desktop,cursor
|
|
74
53
|
```
|
|
75
54
|
|
|
76
|
-
|
|
55
|
+
Configure an arbitrary MCP server (non-Hatch package) on Claude Desktop:
|
|
77
56
|
|
|
78
57
|
```bash
|
|
79
|
-
#
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
--
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
--
|
|
58
|
+
# Local server with command and arguments
|
|
59
|
+
hatch mcp configure my-weather-server --host claude-desktop \
|
|
60
|
+
--command python --args weather_server.py \
|
|
61
|
+
--env-var API_KEY=your_key
|
|
62
|
+
|
|
63
|
+
# Remote server with URL
|
|
64
|
+
hatch mcp configure api-server --host gemini \
|
|
65
|
+
--httpUrl https://api.example.com \
|
|
66
|
+
--header Authorization="Bearer token"
|
|
88
67
|
```
|
|
89
68
|
|
|
69
|
+
List configured servers and hosts:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
hatch mcp list servers
|
|
73
|
+
hatch mcp list hosts --detailed
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Key features
|
|
77
|
+
|
|
78
|
+
- **Environment isolation**: Create separate workspaces for different projects
|
|
79
|
+
- **Multi-type dependencies**: Automatically resolve and install system packages, Python packages, Docker containers, and Hatch packages
|
|
80
|
+
- **MCP host configuration**: Deploy MCP servers to Claude Desktop, Cursor, VSCode, and other platforms
|
|
81
|
+
- **Package validation**: Ensure packages meet schema requirements before distribution
|
|
82
|
+
- **Development-focused**: Optimized for rapid development and testing of MCP server ecosystems
|
|
83
|
+
|
|
90
84
|
## Documentation
|
|
91
85
|
|
|
92
86
|
- **[Full Documentation](https://hatch.readthedocs.io/en/latest/)** — Complete reference and guides
|
|
@@ -108,12 +102,12 @@ We welcome contributions! See the [How to Contribute](./docs/articles/devs/contr
|
|
|
108
102
|
3. **Create a feature branch**: `git checkout -b feat/your-feature`
|
|
109
103
|
4. **Make changes** and add tests
|
|
110
104
|
5. **Use conventional commits**: `npm run commit` for guided commits
|
|
111
|
-
6. **Run tests**: `
|
|
105
|
+
6. **Run tests**: `python -m pytest tests/`
|
|
112
106
|
7. **Create a pull request**
|
|
113
107
|
|
|
114
108
|
We use [Conventional Commits](https://www.conventionalcommits.org/) for automated versioning. Use `npm run commit` for guided commit messages.
|
|
115
109
|
|
|
116
|
-
## Getting
|
|
110
|
+
## Getting help
|
|
117
111
|
|
|
118
112
|
- Search existing [GitHub Issues](https://github.com/CrackingShells/Hatch/issues)
|
|
119
113
|
- Read [Troubleshooting](./docs/articles/users/Troubleshooting/ReportIssues.md) for common problems
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hatch-xclam
|
|
3
|
-
Version: 0.7.0
|
|
3
|
+
Version: 0.7.0.dev12
|
|
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
|
|
@@ -26,34 +26,13 @@ Dynamic: license-file
|
|
|
26
26
|
|
|
27
27
|
# Hatch
|
|
28
28
|
|
|
29
|
-

|
|
30
30
|
|
|
31
|
-
|
|
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.
|
|
31
|
+
Hatch is the package manager for the Cracking Shells ecosystem, designed specifically for managing Model Context Protocol (MCP) servers. It handles complex dependency resolution across system packages, Python packages, Docker containers, and other Hatch packages — all in isolated environments.
|
|
34
32
|
|
|
35
33
|
The canonical documentation is at `docs/index.md` and published at <https://hatch.readthedocs.io/en/latest/>.
|
|
36
34
|
|
|
37
|
-
##
|
|
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
|
|
35
|
+
## Quick start
|
|
57
36
|
|
|
58
37
|
### Install from PyPI
|
|
59
38
|
|
|
@@ -93,26 +72,41 @@ hatch validate ./my_mcp_server
|
|
|
93
72
|
|
|
94
73
|
### Deploy MCP servers to your tools
|
|
95
74
|
|
|
96
|
-
|
|
75
|
+
Add a Hatch package and automatically configure it on Claude Desktop and Cursor:
|
|
97
76
|
|
|
98
77
|
```bash
|
|
99
78
|
hatch package add ./my_mcp_server --host claude-desktop,cursor
|
|
100
79
|
```
|
|
101
80
|
|
|
102
|
-
|
|
81
|
+
Configure an arbitrary MCP server (non-Hatch package) on Claude Desktop:
|
|
103
82
|
|
|
104
83
|
```bash
|
|
105
|
-
#
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
--
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
--
|
|
84
|
+
# Local server with command and arguments
|
|
85
|
+
hatch mcp configure my-weather-server --host claude-desktop \
|
|
86
|
+
--command python --args weather_server.py \
|
|
87
|
+
--env-var API_KEY=your_key
|
|
88
|
+
|
|
89
|
+
# Remote server with URL
|
|
90
|
+
hatch mcp configure api-server --host gemini \
|
|
91
|
+
--httpUrl https://api.example.com \
|
|
92
|
+
--header Authorization="Bearer token"
|
|
114
93
|
```
|
|
115
94
|
|
|
95
|
+
List configured servers and hosts:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
hatch mcp list servers
|
|
99
|
+
hatch mcp list hosts --detailed
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Key features
|
|
103
|
+
|
|
104
|
+
- **Environment isolation**: Create separate workspaces for different projects
|
|
105
|
+
- **Multi-type dependencies**: Automatically resolve and install system packages, Python packages, Docker containers, and Hatch packages
|
|
106
|
+
- **MCP host configuration**: Deploy MCP servers to Claude Desktop, Cursor, VSCode, and other platforms
|
|
107
|
+
- **Package validation**: Ensure packages meet schema requirements before distribution
|
|
108
|
+
- **Development-focused**: Optimized for rapid development and testing of MCP server ecosystems
|
|
109
|
+
|
|
116
110
|
## Documentation
|
|
117
111
|
|
|
118
112
|
- **[Full Documentation](https://hatch.readthedocs.io/en/latest/)** — Complete reference and guides
|
|
@@ -134,12 +128,12 @@ We welcome contributions! See the [How to Contribute](./docs/articles/devs/contr
|
|
|
134
128
|
3. **Create a feature branch**: `git checkout -b feat/your-feature`
|
|
135
129
|
4. **Make changes** and add tests
|
|
136
130
|
5. **Use conventional commits**: `npm run commit` for guided commits
|
|
137
|
-
6. **Run tests**: `
|
|
131
|
+
6. **Run tests**: `python -m pytest tests/`
|
|
138
132
|
7. **Create a pull request**
|
|
139
133
|
|
|
140
134
|
We use [Conventional Commits](https://www.conventionalcommits.org/) for automated versioning. Use `npm run commit` for guided commit messages.
|
|
141
135
|
|
|
142
|
-
## Getting
|
|
136
|
+
## Getting help
|
|
143
137
|
|
|
144
138
|
- Search existing [GitHub Issues](https://github.com/CrackingShells/Hatch/issues)
|
|
145
139
|
- Read [Troubleshooting](./docs/articles/users/Troubleshooting/ReportIssues.md) for common problems
|
|
@@ -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
|
|
@@ -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())
|