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

|
|
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
|
+

|
|
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
|
+

|
|
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
|
|
@@ -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())
|