apm-cli 0.9.4__tar.gz → 0.11.0__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.
- apm_cli-0.11.0/NOTICE.md +1217 -0
- {apm_cli-0.9.4/src/apm_cli.egg-info → apm_cli-0.11.0}/PKG-INFO +12 -1
- {apm_cli-0.9.4 → apm_cli-0.11.0}/README.md +9 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/pyproject.toml +2 -1
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/client/base.py +43 -3
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/client/codex.py +52 -26
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/client/copilot.py +12 -3
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/client/cursor.py +2 -2
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/client/opencode.py +3 -3
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/client/vscode.py +13 -3
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/_helpers.py +12 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/audit.py +300 -235
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/compile/cli.py +121 -47
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/config.py +99 -1
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/deps/cli.py +187 -110
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/init.py +26 -1
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/install.py +671 -427
- apm_cli-0.11.0/src/apm_cli/commands/marketplace.py +2132 -0
- apm_cli-0.11.0/src/apm_cli/commands/marketplace_plugin.py +451 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/pack.py +168 -56
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/policy.py +2 -4
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/uninstall/cli.py +10 -2
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/uninstall/engine.py +74 -12
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/agents_compiler.py +56 -26
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/distributed_compiler.py +1 -1
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/template_builder.py +1 -1
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/config.py +63 -0
- apm_cli-0.11.0/src/apm_cli/core/build_orchestrator.py +274 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/experimental.py +9 -0
- apm_cli-0.11.0/src/apm_cli/core/null_logger.py +72 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/operations.py +51 -6
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/safe_installer.py +16 -3
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/script_runner.py +209 -123
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/target_detection.py +178 -60
- apm_cli-0.11.0/src/apm_cli/deps/download_strategies.py +852 -0
- apm_cli-0.11.0/src/apm_cli/deps/git_remote_ops.py +89 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/github_downloader.py +39 -640
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/plugin_parser.py +3 -3
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/factory.py +14 -2
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/context.py +6 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/errors.py +30 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/integrate.py +74 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/resolve.py +28 -26
- apm_cli-0.11.0/src/apm_cli/install/phases/targets.py +185 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/pipeline.py +98 -1
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/services.py +83 -5
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/template.py +1 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/validation.py +118 -31
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/base_integrator.py +73 -2
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/cleanup.py +84 -7
- apm_cli-0.11.0/src/apm_cli/integration/copilot_cowork_paths.py +241 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/mcp_integrator.py +195 -249
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/skill_integrator.py +81 -12
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/targets.py +189 -64
- apm_cli-0.11.0/src/apm_cli/marketplace/__init__.py +96 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/_git_utils.py +19 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/_io.py +30 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/builder.py +902 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/marketplace/client.py +2 -1
- apm_cli-0.11.0/src/apm_cli/marketplace/errors.py +128 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/git_stderr.py +178 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/init_template.py +138 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/migration.py +329 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/pr_integration.py +482 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/publisher.py +895 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/ref_resolver.py +345 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/marketplace/registry.py +23 -21
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/marketplace/resolver.py +21 -17
- apm_cli-0.11.0/src/apm_cli/marketplace/semver.py +242 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/tag_pattern.py +103 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/marketplace/version_pins.py +17 -1
- apm_cli-0.11.0/src/apm_cli/marketplace/yml_editor.py +313 -0
- apm_cli-0.11.0/src/apm_cli/marketplace/yml_schema.py +718 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/apm_package.py +58 -64
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/dependency/reference.py +238 -161
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/output/formatters.py +5 -5
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/output/script_formatters.py +5 -5
- apm_cli-0.11.0/src/apm_cli/policy/_help_text.py +18 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/discovery.py +13 -4
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/primitives/discovery.py +69 -14
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/registry/operations.py +51 -18
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/console.py +24 -4
- {apm_cli-0.9.4 → apm_cli-0.11.0/src/apm_cli.egg-info}/PKG-INFO +12 -1
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli.egg-info/SOURCES.txt +21 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli.egg-info/requires.txt +1 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_apm_package_models.py +146 -0
- apm_cli-0.9.4/src/apm_cli/commands/marketplace.py +0 -556
- apm_cli-0.9.4/src/apm_cli/install/phases/targets.py +0 -104
- apm_cli-0.9.4/src/apm_cli/marketplace/__init__.py +0 -28
- apm_cli-0.9.4/src/apm_cli/marketplace/errors.py +0 -44
- {apm_cli-0.9.4 → apm_cli-0.11.0}/AUTHORS +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/LICENSE +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/setup.cfg +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/client/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/client/gemini.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/package_manager/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/package_manager/base.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/adapters/package_manager/default_manager.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/bundle/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/bundle/lockfile_enrichment.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/bundle/packer.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/bundle/plugin_exporter.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/bundle/unpacker.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/cli.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/_apm_yml_writer.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/compile/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/compile/watcher.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/deps/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/deps/_utils.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/experimental.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/list_cmd.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/mcp.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/outdated.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/prune.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/run.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/runtime.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/uninstall/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/update.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/commands/view.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/claude_formatter.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/constants.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/constitution.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/constitution_block.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/context_optimizer.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/gemini_formatter.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/injector.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/compilation/link_resolver.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/constants.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/auth.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/azure_cli.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/command_logger.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/conflict_detector.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/docker_args.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/scope.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/core/token_manager.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/aggregator.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/apm_resolver.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/artifactory_entry.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/collection_parser.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/dependency_graph.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/installed_package.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/lockfile.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/package_validator.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/registry_proxy.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/transport_selection.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/deps/verifier.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/drift.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/helpers/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/helpers/security_scan.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/insecure_policy.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/mcp_registry.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/mcp_warnings.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/cleanup.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/download.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/finalize.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/local_content.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/lockfile.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/policy_gate.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/policy_target_check.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/phases/post_deps_local.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/presentation/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/presentation/dry_run.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/request.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/service.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/install/sources.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/agent_integrator.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/command_integrator.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/coverage.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/dispatch.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/hook_integrator.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/instruction_integrator.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/prompt_integrator.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/skill_transformer.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/integration/utils.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/marketplace/models.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/marketplace/shadow_detector.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/marketplace/validator.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/dependency/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/dependency/mcp.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/dependency/types.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/plugin.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/results.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/models/validation.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/output/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/output/models.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/ci_checks.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/inheritance.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/install_preflight.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/matcher.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/models.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/outcome_routing.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/parser.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/policy_checks.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/project_config.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/policy/schema.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/primitives/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/primitives/models.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/primitives/parser.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/registry/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/registry/client.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/registry/integration.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/runtime/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/runtime/base.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/runtime/codex_runtime.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/runtime/copilot_runtime.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/runtime/factory.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/runtime/llm_runtime.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/runtime/manager.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/security/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/security/audit_report.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/security/content_scanner.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/security/file_scanner.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/security/gate.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/update_policy.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/content_hash.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/diagnostics.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/exclude.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/file_ops.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/github_host.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/helpers.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/path_security.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/paths.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/subprocess_env.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/version_checker.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/utils/yaml_io.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/version.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/workflow/__init__.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/workflow/discovery.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/workflow/parser.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli/workflow/runner.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli.egg-info/dependency_links.txt +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli.egg-info/entry_points.txt +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/src/apm_cli.egg-info/top_level.txt +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_apm_resolver.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_codex_docker_args_fix.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_codex_empty_string_and_defaults.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_collision_integration.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_console.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_distributed_compilation.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_empty_string_and_defaults.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_enhanced_discovery.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_github_downloader.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_github_downloader_token_precedence.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_lockfile.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_runnable_prompts.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_runtime_manager_token_precedence.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_token_manager.py +0 -0
- {apm_cli-0.9.4 → apm_cli-0.11.0}/tests/test_virtual_package_multi_install.py +0 -0
apm_cli-0.11.0/NOTICE.md
ADDED
|
@@ -0,0 +1,1217 @@
|
|
|
1
|
+
NOTICES
|
|
2
|
+
|
|
3
|
+
This repository incorporates material as listed below or described in the code.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
This file is generated and maintained per the Microsoft CELA "Manual NOTICE
|
|
8
|
+
Generation" process. It enumerates third-party open-source components that ship
|
|
9
|
+
with this project (the runtime dependencies of the `apm` Python package). Build-
|
|
10
|
+
time and contributor-only tooling (test runners, linters, type-checkers, the
|
|
11
|
+
PyInstaller build backend, and the `setuptools` / `wheel` build system) are not
|
|
12
|
+
distributed and are intentionally omitted, as is install-time user state created
|
|
13
|
+
by the CLI under `apm_modules/`. No third-party source is vendored into this
|
|
14
|
+
repository.
|
|
15
|
+
|
|
16
|
+
The `apm` source code itself is licensed under the MIT License; see `LICENSE`.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Component. click
|
|
21
|
+
|
|
22
|
+
- Version requirement: `>=8.0.0`
|
|
23
|
+
- Upstream: https://github.com/pallets/click
|
|
24
|
+
- SPDX: `BSD-3-Clause`
|
|
25
|
+
|
|
26
|
+
### Open Source License/Copyright Notice.
|
|
27
|
+
|
|
28
|
+
_Copyright 2014 Pallets_
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
Copyright 2014 Pallets
|
|
32
|
+
|
|
33
|
+
Redistribution and use in source and binary forms, with or without
|
|
34
|
+
modification, are permitted provided that the following conditions are
|
|
35
|
+
met:
|
|
36
|
+
|
|
37
|
+
1. Redistributions of source code must retain the above copyright
|
|
38
|
+
notice, this list of conditions and the following disclaimer.
|
|
39
|
+
|
|
40
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
41
|
+
notice, this list of conditions and the following disclaimer in the
|
|
42
|
+
documentation and/or other materials provided with the distribution.
|
|
43
|
+
|
|
44
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
45
|
+
contributors may be used to endorse or promote products derived from
|
|
46
|
+
this software without specific prior written permission.
|
|
47
|
+
|
|
48
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
49
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
50
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
51
|
+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
52
|
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
53
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
54
|
+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
55
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
56
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
57
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
58
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Component. colorama
|
|
64
|
+
|
|
65
|
+
- Version requirement: `>=0.4.6`
|
|
66
|
+
- Upstream: https://github.com/tartley/colorama
|
|
67
|
+
- SPDX: `BSD-3-Clause`
|
|
68
|
+
|
|
69
|
+
### Open Source License/Copyright Notice.
|
|
70
|
+
|
|
71
|
+
_Copyright (c) 2010 Jonathan Hartley_
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
Copyright (c) 2010 Jonathan Hartley
|
|
75
|
+
All rights reserved.
|
|
76
|
+
|
|
77
|
+
Redistribution and use in source and binary forms, with or without
|
|
78
|
+
modification, are permitted provided that the following conditions are met:
|
|
79
|
+
|
|
80
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
81
|
+
list of conditions and the following disclaimer.
|
|
82
|
+
|
|
83
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
84
|
+
this list of conditions and the following disclaimer in the documentation
|
|
85
|
+
and/or other materials provided with the distribution.
|
|
86
|
+
|
|
87
|
+
* Neither the name of the copyright holders, nor those of its contributors
|
|
88
|
+
may be used to endorse or promote products derived from this software without
|
|
89
|
+
specific prior written permission.
|
|
90
|
+
|
|
91
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
92
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
93
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
94
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
95
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
96
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
97
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
98
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
99
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
100
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## Component. PyYAML
|
|
106
|
+
|
|
107
|
+
- Version requirement: `>=6.0.0 (declared as `pyyaml`)`
|
|
108
|
+
- Upstream: https://github.com/yaml/pyyaml
|
|
109
|
+
- SPDX: `MIT`
|
|
110
|
+
|
|
111
|
+
### Open Source License/Copyright Notice.
|
|
112
|
+
|
|
113
|
+
_Copyright (c) 2017-2021 Ingy doet Net_
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
Copyright (c) 2017-2021 Ingy döt Net
|
|
117
|
+
Copyright (c) 2006-2016 Kirill Simonov
|
|
118
|
+
|
|
119
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
120
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
121
|
+
the Software without restriction, including without limitation the rights to
|
|
122
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
123
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
124
|
+
so, subject to the following conditions:
|
|
125
|
+
|
|
126
|
+
The above copyright notice and this permission notice shall be included in all
|
|
127
|
+
copies or substantial portions of the Software.
|
|
128
|
+
|
|
129
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
130
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
131
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
132
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
133
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
134
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
135
|
+
SOFTWARE.
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## Component. requests
|
|
141
|
+
|
|
142
|
+
- Version requirement: `>=2.28.0`
|
|
143
|
+
- Upstream: https://github.com/psf/requests
|
|
144
|
+
- SPDX: `Apache-2.0`
|
|
145
|
+
- Notes: Apache-2.0 requires forwarding the upstream NOTICE file verbatim.
|
|
146
|
+
|
|
147
|
+
### Open Source License/Copyright Notice.
|
|
148
|
+
|
|
149
|
+
_Copyright 2019 Kenneth Reitz (per upstream NOTICE file)_
|
|
150
|
+
|
|
151
|
+
```
|
|
152
|
+
Apache License
|
|
153
|
+
Version 2.0, January 2004
|
|
154
|
+
http://www.apache.org/licenses/
|
|
155
|
+
|
|
156
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
157
|
+
|
|
158
|
+
1. Definitions.
|
|
159
|
+
|
|
160
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
161
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
162
|
+
|
|
163
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
164
|
+
the copyright owner that is granting the License.
|
|
165
|
+
|
|
166
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
167
|
+
other entities that control, are controlled by, or are under common
|
|
168
|
+
control with that entity. For the purposes of this definition,
|
|
169
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
170
|
+
direction or management of such entity, whether by contract or
|
|
171
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
172
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
173
|
+
|
|
174
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
175
|
+
exercising permissions granted by this License.
|
|
176
|
+
|
|
177
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
178
|
+
including but not limited to software source code, documentation
|
|
179
|
+
source, and configuration files.
|
|
180
|
+
|
|
181
|
+
"Object" form shall mean any form resulting from mechanical
|
|
182
|
+
transformation or translation of a Source form, including but
|
|
183
|
+
not limited to compiled object code, generated documentation,
|
|
184
|
+
and conversions to other media types.
|
|
185
|
+
|
|
186
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
187
|
+
Object form, made available under the License, as indicated by a
|
|
188
|
+
copyright notice that is included in or attached to the work
|
|
189
|
+
(an example is provided in the Appendix below).
|
|
190
|
+
|
|
191
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
192
|
+
form, that is based on (or derived from) the Work and for which the
|
|
193
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
194
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
195
|
+
of this License, Derivative Works shall not include works that remain
|
|
196
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
197
|
+
the Work and Derivative Works thereof.
|
|
198
|
+
|
|
199
|
+
"Contribution" shall mean any work of authorship, including
|
|
200
|
+
the original version of the Work and any modifications or additions
|
|
201
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
202
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
203
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
204
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
205
|
+
means any form of electronic, verbal, or written communication sent
|
|
206
|
+
to the Licensor or its representatives, including but not limited to
|
|
207
|
+
communication on electronic mailing lists, source code control systems,
|
|
208
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
209
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
210
|
+
excluding communication that is conspicuously marked or otherwise
|
|
211
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
212
|
+
|
|
213
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
214
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
215
|
+
subsequently incorporated within the Work.
|
|
216
|
+
|
|
217
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
218
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
219
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
220
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
221
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
222
|
+
Work and such Derivative Works in Source or Object form.
|
|
223
|
+
|
|
224
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
225
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
226
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
227
|
+
(except as stated in this section) patent license to make, have made,
|
|
228
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
229
|
+
where such license applies only to those patent claims licensable
|
|
230
|
+
by such Contributor that are necessarily infringed by their
|
|
231
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
232
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
233
|
+
institute patent litigation against any entity (including a
|
|
234
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
235
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
236
|
+
or contributory patent infringement, then any patent licenses
|
|
237
|
+
granted to You under this License for that Work shall terminate
|
|
238
|
+
as of the date such litigation is filed.
|
|
239
|
+
|
|
240
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
241
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
242
|
+
modifications, and in Source or Object form, provided that You
|
|
243
|
+
meet the following conditions:
|
|
244
|
+
|
|
245
|
+
(a) You must give any other recipients of the Work or
|
|
246
|
+
Derivative Works a copy of this License; and
|
|
247
|
+
|
|
248
|
+
(b) You must cause any modified files to carry prominent notices
|
|
249
|
+
stating that You changed the files; and
|
|
250
|
+
|
|
251
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
252
|
+
that You distribute, all copyright, patent, trademark, and
|
|
253
|
+
attribution notices from the Source form of the Work,
|
|
254
|
+
excluding those notices that do not pertain to any part of
|
|
255
|
+
the Derivative Works; and
|
|
256
|
+
|
|
257
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
258
|
+
distribution, then any Derivative Works that You distribute must
|
|
259
|
+
include a readable copy of the attribution notices contained
|
|
260
|
+
within such NOTICE file, excluding those notices that do not
|
|
261
|
+
pertain to any part of the Derivative Works, in at least one
|
|
262
|
+
of the following places: within a NOTICE text file distributed
|
|
263
|
+
as part of the Derivative Works; within the Source form or
|
|
264
|
+
documentation, if provided along with the Derivative Works; or,
|
|
265
|
+
within a display generated by the Derivative Works, if and
|
|
266
|
+
wherever such third-party notices normally appear. The contents
|
|
267
|
+
of the NOTICE file are for informational purposes only and
|
|
268
|
+
do not modify the License. You may add Your own attribution
|
|
269
|
+
notices within Derivative Works that You distribute, alongside
|
|
270
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
271
|
+
that such additional attribution notices cannot be construed
|
|
272
|
+
as modifying the License.
|
|
273
|
+
|
|
274
|
+
You may add Your own copyright statement to Your modifications and
|
|
275
|
+
may provide additional or different license terms and conditions
|
|
276
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
277
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
278
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
279
|
+
the conditions stated in this License.
|
|
280
|
+
|
|
281
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
282
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
283
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
284
|
+
this License, without any additional terms or conditions.
|
|
285
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
286
|
+
the terms of any separate license agreement you may have executed
|
|
287
|
+
with Licensor regarding such Contributions.
|
|
288
|
+
|
|
289
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
290
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
291
|
+
except as required for reasonable and customary use in describing the
|
|
292
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
293
|
+
|
|
294
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
295
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
296
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
297
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
298
|
+
implied, including, without limitation, any warranties or conditions
|
|
299
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
300
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
301
|
+
appropriateness of using or redistributing the Work and assume any
|
|
302
|
+
risks associated with Your exercise of permissions under this License.
|
|
303
|
+
|
|
304
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
305
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
306
|
+
unless required by applicable law (such as deliberate and grossly
|
|
307
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
308
|
+
liable to You for damages, including any direct, indirect, special,
|
|
309
|
+
incidental, or consequential damages of any character arising as a
|
|
310
|
+
result of this License or out of the use or inability to use the
|
|
311
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
312
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
313
|
+
other commercial damages or losses), even if such Contributor
|
|
314
|
+
has been advised of the possibility of such damages.
|
|
315
|
+
|
|
316
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
317
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
318
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
319
|
+
or other liability obligations and/or rights consistent with this
|
|
320
|
+
License. However, in accepting such obligations, You may act only
|
|
321
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
322
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
323
|
+
defend, and hold each Contributor harmless for any liability
|
|
324
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
325
|
+
of your accepting any such warranty or additional liability.
|
|
326
|
+
```
|
|
327
|
+
|
|
328
|
+
### Additional Attribution. (upstream NOTICE file, verbatim)
|
|
329
|
+
|
|
330
|
+
```
|
|
331
|
+
Requests
|
|
332
|
+
Copyright 2019 Kenneth Reitz
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
---
|
|
336
|
+
|
|
337
|
+
## Component. python-frontmatter
|
|
338
|
+
|
|
339
|
+
- Version requirement: `>=1.0.0`
|
|
340
|
+
- Upstream: https://github.com/eyeseast/python-frontmatter
|
|
341
|
+
- SPDX: `MIT`
|
|
342
|
+
|
|
343
|
+
### Open Source License/Copyright Notice.
|
|
344
|
+
|
|
345
|
+
_Copyright (c) 2021 Chris Amico_
|
|
346
|
+
|
|
347
|
+
```
|
|
348
|
+
The MIT License (MIT)
|
|
349
|
+
|
|
350
|
+
Copyright (c) 2021 Chris Amico
|
|
351
|
+
|
|
352
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
353
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
354
|
+
in the Software without restriction, including without limitation the rights
|
|
355
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
356
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
357
|
+
furnished to do so, subject to the following conditions:
|
|
358
|
+
|
|
359
|
+
The above copyright notice and this permission notice shall be included in
|
|
360
|
+
all copies or substantial portions of the Software.
|
|
361
|
+
|
|
362
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
363
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
364
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
365
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
366
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
367
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
368
|
+
THE SOFTWARE.
|
|
369
|
+
```
|
|
370
|
+
|
|
371
|
+
---
|
|
372
|
+
|
|
373
|
+
## Component. llm
|
|
374
|
+
|
|
375
|
+
- Version requirement: `>=0.17.0`
|
|
376
|
+
- Upstream: https://github.com/simonw/llm
|
|
377
|
+
- SPDX: `Apache-2.0`
|
|
378
|
+
- Notes: No NOTICE or AUTHORS file present upstream; nothing additional to forward.
|
|
379
|
+
|
|
380
|
+
### Open Source License/Copyright Notice.
|
|
381
|
+
|
|
382
|
+
_Copyright Simon Willison (per PyPI author metadata; LICENSE file is the unmodified Apache 2.0 boilerplate with no embedded copyright statement)_
|
|
383
|
+
|
|
384
|
+
```
|
|
385
|
+
Apache License
|
|
386
|
+
Version 2.0, January 2004
|
|
387
|
+
http://www.apache.org/licenses/
|
|
388
|
+
|
|
389
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
390
|
+
|
|
391
|
+
1. Definitions.
|
|
392
|
+
|
|
393
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
394
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
395
|
+
|
|
396
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
397
|
+
the copyright owner that is granting the License.
|
|
398
|
+
|
|
399
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
400
|
+
other entities that control, are controlled by, or are under common
|
|
401
|
+
control with that entity. For the purposes of this definition,
|
|
402
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
403
|
+
direction or management of such entity, whether by contract or
|
|
404
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
405
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
406
|
+
|
|
407
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
408
|
+
exercising permissions granted by this License.
|
|
409
|
+
|
|
410
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
411
|
+
including but not limited to software source code, documentation
|
|
412
|
+
source, and configuration files.
|
|
413
|
+
|
|
414
|
+
"Object" form shall mean any form resulting from mechanical
|
|
415
|
+
transformation or translation of a Source form, including but
|
|
416
|
+
not limited to compiled object code, generated documentation,
|
|
417
|
+
and conversions to other media types.
|
|
418
|
+
|
|
419
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
420
|
+
Object form, made available under the License, as indicated by a
|
|
421
|
+
copyright notice that is included in or attached to the work
|
|
422
|
+
(an example is provided in the Appendix below).
|
|
423
|
+
|
|
424
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
425
|
+
form, that is based on (or derived from) the Work and for which the
|
|
426
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
427
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
428
|
+
of this License, Derivative Works shall not include works that remain
|
|
429
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
430
|
+
the Work and Derivative Works thereof.
|
|
431
|
+
|
|
432
|
+
"Contribution" shall mean any work of authorship, including
|
|
433
|
+
the original version of the Work and any modifications or additions
|
|
434
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
435
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
436
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
437
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
438
|
+
means any form of electronic, verbal, or written communication sent
|
|
439
|
+
to the Licensor or its representatives, including but not limited to
|
|
440
|
+
communication on electronic mailing lists, source code control systems,
|
|
441
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
442
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
443
|
+
excluding communication that is conspicuously marked or otherwise
|
|
444
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
445
|
+
|
|
446
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
447
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
448
|
+
subsequently incorporated within the Work.
|
|
449
|
+
|
|
450
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
451
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
452
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
453
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
454
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
455
|
+
Work and such Derivative Works in Source or Object form.
|
|
456
|
+
|
|
457
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
458
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
459
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
460
|
+
(except as stated in this section) patent license to make, have made,
|
|
461
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
462
|
+
where such license applies only to those patent claims licensable
|
|
463
|
+
by such Contributor that are necessarily infringed by their
|
|
464
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
465
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
466
|
+
institute patent litigation against any entity (including a
|
|
467
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
468
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
469
|
+
or contributory patent infringement, then any patent licenses
|
|
470
|
+
granted to You under this License for that Work shall terminate
|
|
471
|
+
as of the date such litigation is filed.
|
|
472
|
+
|
|
473
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
474
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
475
|
+
modifications, and in Source or Object form, provided that You
|
|
476
|
+
meet the following conditions:
|
|
477
|
+
|
|
478
|
+
(a) You must give any other recipients of the Work or
|
|
479
|
+
Derivative Works a copy of this License; and
|
|
480
|
+
|
|
481
|
+
(b) You must cause any modified files to carry prominent notices
|
|
482
|
+
stating that You changed the files; and
|
|
483
|
+
|
|
484
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
485
|
+
that You distribute, all copyright, patent, trademark, and
|
|
486
|
+
attribution notices from the Source form of the Work,
|
|
487
|
+
excluding those notices that do not pertain to any part of
|
|
488
|
+
the Derivative Works; and
|
|
489
|
+
|
|
490
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
491
|
+
distribution, then any Derivative Works that You distribute must
|
|
492
|
+
include a readable copy of the attribution notices contained
|
|
493
|
+
within such NOTICE file, excluding those notices that do not
|
|
494
|
+
pertain to any part of the Derivative Works, in at least one
|
|
495
|
+
of the following places: within a NOTICE text file distributed
|
|
496
|
+
as part of the Derivative Works; within the Source form or
|
|
497
|
+
documentation, if provided along with the Derivative Works; or,
|
|
498
|
+
within a display generated by the Derivative Works, if and
|
|
499
|
+
wherever such third-party notices normally appear. The contents
|
|
500
|
+
of the NOTICE file are for informational purposes only and
|
|
501
|
+
do not modify the License. You may add Your own attribution
|
|
502
|
+
notices within Derivative Works that You distribute, alongside
|
|
503
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
504
|
+
that such additional attribution notices cannot be construed
|
|
505
|
+
as modifying the License.
|
|
506
|
+
|
|
507
|
+
You may add Your own copyright statement to Your modifications and
|
|
508
|
+
may provide additional or different license terms and conditions
|
|
509
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
510
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
511
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
512
|
+
the conditions stated in this License.
|
|
513
|
+
|
|
514
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
515
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
516
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
517
|
+
this License, without any additional terms or conditions.
|
|
518
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
519
|
+
the terms of any separate license agreement you may have executed
|
|
520
|
+
with Licensor regarding such Contributions.
|
|
521
|
+
|
|
522
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
523
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
524
|
+
except as required for reasonable and customary use in describing the
|
|
525
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
526
|
+
|
|
527
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
528
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
529
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
530
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
531
|
+
implied, including, without limitation, any warranties or conditions
|
|
532
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
533
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
534
|
+
appropriateness of using or redistributing the Work and assume any
|
|
535
|
+
risks associated with Your exercise of permissions under this License.
|
|
536
|
+
|
|
537
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
538
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
539
|
+
unless required by applicable law (such as deliberate and grossly
|
|
540
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
541
|
+
liable to You for damages, including any direct, indirect, special,
|
|
542
|
+
incidental, or consequential damages of any character arising as a
|
|
543
|
+
result of this License or out of the use or inability to use the
|
|
544
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
545
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
546
|
+
other commercial damages or losses), even if such Contributor
|
|
547
|
+
has been advised of the possibility of such damages.
|
|
548
|
+
|
|
549
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
550
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
551
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
552
|
+
or other liability obligations and/or rights consistent with this
|
|
553
|
+
License. However, in accepting such obligations, You may act only
|
|
554
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
555
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
556
|
+
defend, and hold each Contributor harmless for any liability
|
|
557
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
558
|
+
of your accepting any such warranty or additional liability.
|
|
559
|
+
|
|
560
|
+
END OF TERMS AND CONDITIONS
|
|
561
|
+
|
|
562
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
563
|
+
|
|
564
|
+
To apply the Apache License to your work, attach the following
|
|
565
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
566
|
+
replaced with your own identifying information. (Don't include
|
|
567
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
568
|
+
comment syntax for the file format. We also recommend that a
|
|
569
|
+
file or class name and description of purpose be included on the
|
|
570
|
+
same "printed page" as the copyright notice for easier
|
|
571
|
+
identification within third-party archives.
|
|
572
|
+
|
|
573
|
+
Copyright [yyyy] [name of copyright owner]
|
|
574
|
+
|
|
575
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
576
|
+
you may not use this file except in compliance with the License.
|
|
577
|
+
You may obtain a copy of the License at
|
|
578
|
+
|
|
579
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
580
|
+
|
|
581
|
+
Unless required by applicable law or agreed to in writing, software
|
|
582
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
583
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
584
|
+
See the License for the specific language governing permissions and
|
|
585
|
+
limitations under the License.
|
|
586
|
+
```
|
|
587
|
+
|
|
588
|
+
---
|
|
589
|
+
|
|
590
|
+
## Component. llm-github-models
|
|
591
|
+
|
|
592
|
+
- Version requirement: `>=0.1.0`
|
|
593
|
+
- Upstream: https://github.com/tonybaloney/llm-github-models
|
|
594
|
+
- SPDX: `Apache-2.0`
|
|
595
|
+
- Notes: Upstream LICENSE file declares MIT license text but PyPI metadata + classifiers say Apache-2.0. See Open Issues.
|
|
596
|
+
|
|
597
|
+
### Open Source License/Copyright Notice.
|
|
598
|
+
|
|
599
|
+
_Copyright (c) 2025 Anthony Shaw (LICENSE header) -- note: file contents are MIT-style header followed by Apache-2.0 reference; see Open Issues_
|
|
600
|
+
|
|
601
|
+
```
|
|
602
|
+
MIT License
|
|
603
|
+
|
|
604
|
+
Copyright (c) 2025 Anthony Shaw
|
|
605
|
+
|
|
606
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
607
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
608
|
+
in the Software without restriction, including without limitation the rights
|
|
609
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
610
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
611
|
+
furnished to do so, subject to the following conditions:
|
|
612
|
+
|
|
613
|
+
The above copyright notice and this permission notice shall be included in all
|
|
614
|
+
copies or substantial portions of the Software.
|
|
615
|
+
|
|
616
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
617
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
618
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
619
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
620
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
621
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
622
|
+
SOFTWARE.
|
|
623
|
+
```
|
|
624
|
+
|
|
625
|
+
---
|
|
626
|
+
|
|
627
|
+
## Component. tomli
|
|
628
|
+
|
|
629
|
+
- Version requirement: `>=1.2.0; python_version<'3.11'`
|
|
630
|
+
- Upstream: https://github.com/hukkin/tomli
|
|
631
|
+
- SPDX: `MIT`
|
|
632
|
+
- Notes: Conditional dependency: only installed on Python < 3.11. Still ships in the sdist/wheel install graph.
|
|
633
|
+
|
|
634
|
+
### Open Source License/Copyright Notice.
|
|
635
|
+
|
|
636
|
+
_Copyright (c) 2021 Taneli Hukkinen_
|
|
637
|
+
|
|
638
|
+
```
|
|
639
|
+
MIT License
|
|
640
|
+
|
|
641
|
+
Copyright (c) 2021 Taneli Hukkinen
|
|
642
|
+
|
|
643
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
644
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
645
|
+
in the Software without restriction, including without limitation the rights
|
|
646
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
647
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
648
|
+
furnished to do so, subject to the following conditions:
|
|
649
|
+
|
|
650
|
+
The above copyright notice and this permission notice shall be included in all
|
|
651
|
+
copies or substantial portions of the Software.
|
|
652
|
+
|
|
653
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
654
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
655
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
656
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
657
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
658
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
659
|
+
SOFTWARE.
|
|
660
|
+
```
|
|
661
|
+
|
|
662
|
+
---
|
|
663
|
+
|
|
664
|
+
## Component. toml
|
|
665
|
+
|
|
666
|
+
- Version requirement: `>=0.10.2`
|
|
667
|
+
- Upstream: https://github.com/uiri/toml
|
|
668
|
+
- SPDX: `MIT`
|
|
669
|
+
|
|
670
|
+
### Open Source License/Copyright Notice.
|
|
671
|
+
|
|
672
|
+
_Copyright 2013-2019 William Pearson_
|
|
673
|
+
|
|
674
|
+
```
|
|
675
|
+
The MIT License
|
|
676
|
+
|
|
677
|
+
Copyright 2013-2019 William Pearson
|
|
678
|
+
Copyright 2015-2016 Julien Enselme
|
|
679
|
+
Copyright 2016 Google Inc.
|
|
680
|
+
Copyright 2017 Samuel Vasko
|
|
681
|
+
Copyright 2017 Nate Prewitt
|
|
682
|
+
Copyright 2017 Jack Evans
|
|
683
|
+
Copyright 2019 Filippo Broggini
|
|
684
|
+
|
|
685
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
686
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
687
|
+
in the Software without restriction, including without limitation the rights
|
|
688
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
689
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
690
|
+
furnished to do so, subject to the following conditions:
|
|
691
|
+
|
|
692
|
+
The above copyright notice and this permission notice shall be included in
|
|
693
|
+
all copies or substantial portions of the Software.
|
|
694
|
+
|
|
695
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
696
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
697
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
698
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
699
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
700
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
701
|
+
THE SOFTWARE.
|
|
702
|
+
```
|
|
703
|
+
|
|
704
|
+
---
|
|
705
|
+
|
|
706
|
+
## Component. rich
|
|
707
|
+
|
|
708
|
+
- Version requirement: `>=13.0.0`
|
|
709
|
+
- Upstream: https://github.com/Textualize/rich
|
|
710
|
+
- SPDX: `MIT`
|
|
711
|
+
|
|
712
|
+
### Open Source License/Copyright Notice.
|
|
713
|
+
|
|
714
|
+
_Copyright (c) 2020 Will McGugan_
|
|
715
|
+
|
|
716
|
+
```
|
|
717
|
+
Copyright (c) 2020 Will McGugan
|
|
718
|
+
|
|
719
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
720
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
721
|
+
in the Software without restriction, including without limitation the rights
|
|
722
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
723
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
724
|
+
furnished to do so, subject to the following conditions:
|
|
725
|
+
|
|
726
|
+
The above copyright notice and this permission notice shall be included in all
|
|
727
|
+
copies or substantial portions of the Software.
|
|
728
|
+
|
|
729
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
730
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
731
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
732
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
733
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
734
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
735
|
+
SOFTWARE.
|
|
736
|
+
```
|
|
737
|
+
|
|
738
|
+
---
|
|
739
|
+
|
|
740
|
+
## Component. rich-click
|
|
741
|
+
|
|
742
|
+
- Version requirement: `>=1.7.0`
|
|
743
|
+
- Upstream: https://github.com/ewels/rich-click
|
|
744
|
+
- SPDX: `MIT`
|
|
745
|
+
|
|
746
|
+
### Open Source License/Copyright Notice.
|
|
747
|
+
|
|
748
|
+
_Copyright (c) 2022 Phil Ewels_
|
|
749
|
+
|
|
750
|
+
```
|
|
751
|
+
MIT License
|
|
752
|
+
|
|
753
|
+
Copyright (c) 2022 Phil Ewels
|
|
754
|
+
|
|
755
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
756
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
757
|
+
in the Software without restriction, including without limitation the rights
|
|
758
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
759
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
760
|
+
furnished to do so, subject to the following conditions:
|
|
761
|
+
|
|
762
|
+
The above copyright notice and this permission notice shall be included in all
|
|
763
|
+
copies or substantial portions of the Software.
|
|
764
|
+
|
|
765
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
766
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
767
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
768
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
769
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
770
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
771
|
+
SOFTWARE.
|
|
772
|
+
```
|
|
773
|
+
|
|
774
|
+
---
|
|
775
|
+
|
|
776
|
+
## Component. watchdog
|
|
777
|
+
|
|
778
|
+
- Version requirement: `>=3.0.0`
|
|
779
|
+
- Upstream: https://github.com/gorakhargosh/watchdog
|
|
780
|
+
- SPDX: `Apache-2.0`
|
|
781
|
+
- Notes: No NOTICE file upstream; AUTHORS reproduced for attribution.
|
|
782
|
+
|
|
783
|
+
### Open Source License/Copyright Notice.
|
|
784
|
+
|
|
785
|
+
_Copyright Yesudeep Mangalapilly, Mickael Schoentgen, and watchdog contributors (per upstream AUTHORS file; LICENSE file is the unmodified Apache 2.0 boilerplate)_
|
|
786
|
+
|
|
787
|
+
```
|
|
788
|
+
Apache License
|
|
789
|
+
Version 2.0, January 2004
|
|
790
|
+
http://www.apache.org/licenses/
|
|
791
|
+
|
|
792
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
793
|
+
|
|
794
|
+
1. Definitions.
|
|
795
|
+
|
|
796
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
797
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
798
|
+
|
|
799
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
800
|
+
the copyright owner that is granting the License.
|
|
801
|
+
|
|
802
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
803
|
+
other entities that control, are controlled by, or are under common
|
|
804
|
+
control with that entity. For the purposes of this definition,
|
|
805
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
806
|
+
direction or management of such entity, whether by contract or
|
|
807
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
808
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
809
|
+
|
|
810
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
811
|
+
exercising permissions granted by this License.
|
|
812
|
+
|
|
813
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
814
|
+
including but not limited to software source code, documentation
|
|
815
|
+
source, and configuration files.
|
|
816
|
+
|
|
817
|
+
"Object" form shall mean any form resulting from mechanical
|
|
818
|
+
transformation or translation of a Source form, including but
|
|
819
|
+
not limited to compiled object code, generated documentation,
|
|
820
|
+
and conversions to other media types.
|
|
821
|
+
|
|
822
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
823
|
+
Object form, made available under the License, as indicated by a
|
|
824
|
+
copyright notice that is included in or attached to the work
|
|
825
|
+
(an example is provided in the Appendix below).
|
|
826
|
+
|
|
827
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
828
|
+
form, that is based on (or derived from) the Work and for which the
|
|
829
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
830
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
831
|
+
of this License, Derivative Works shall not include works that remain
|
|
832
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
833
|
+
the Work and Derivative Works thereof.
|
|
834
|
+
|
|
835
|
+
"Contribution" shall mean any work of authorship, including
|
|
836
|
+
the original version of the Work and any modifications or additions
|
|
837
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
838
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
839
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
840
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
841
|
+
means any form of electronic, verbal, or written communication sent
|
|
842
|
+
to the Licensor or its representatives, including but not limited to
|
|
843
|
+
communication on electronic mailing lists, source code control systems,
|
|
844
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
845
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
846
|
+
excluding communication that is conspicuously marked or otherwise
|
|
847
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
848
|
+
|
|
849
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
850
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
851
|
+
subsequently incorporated within the Work.
|
|
852
|
+
|
|
853
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
854
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
855
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
856
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
857
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
858
|
+
Work and such Derivative Works in Source or Object form.
|
|
859
|
+
|
|
860
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
861
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
862
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
863
|
+
(except as stated in this section) patent license to make, have made,
|
|
864
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
865
|
+
where such license applies only to those patent claims licensable
|
|
866
|
+
by such Contributor that are necessarily infringed by their
|
|
867
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
868
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
869
|
+
institute patent litigation against any entity (including a
|
|
870
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
871
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
872
|
+
or contributory patent infringement, then any patent licenses
|
|
873
|
+
granted to You under this License for that Work shall terminate
|
|
874
|
+
as of the date such litigation is filed.
|
|
875
|
+
|
|
876
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
877
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
878
|
+
modifications, and in Source or Object form, provided that You
|
|
879
|
+
meet the following conditions:
|
|
880
|
+
|
|
881
|
+
(a) You must give any other recipients of the Work or
|
|
882
|
+
Derivative Works a copy of this License; and
|
|
883
|
+
|
|
884
|
+
(b) You must cause any modified files to carry prominent notices
|
|
885
|
+
stating that You changed the files; and
|
|
886
|
+
|
|
887
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
888
|
+
that You distribute, all copyright, patent, trademark, and
|
|
889
|
+
attribution notices from the Source form of the Work,
|
|
890
|
+
excluding those notices that do not pertain to any part of
|
|
891
|
+
the Derivative Works; and
|
|
892
|
+
|
|
893
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
894
|
+
distribution, then any Derivative Works that You distribute must
|
|
895
|
+
include a readable copy of the attribution notices contained
|
|
896
|
+
within such NOTICE file, excluding those notices that do not
|
|
897
|
+
pertain to any part of the Derivative Works, in at least one
|
|
898
|
+
of the following places: within a NOTICE text file distributed
|
|
899
|
+
as part of the Derivative Works; within the Source form or
|
|
900
|
+
documentation, if provided along with the Derivative Works; or,
|
|
901
|
+
within a display generated by the Derivative Works, if and
|
|
902
|
+
wherever such third-party notices normally appear. The contents
|
|
903
|
+
of the NOTICE file are for informational purposes only and
|
|
904
|
+
do not modify the License. You may add Your own attribution
|
|
905
|
+
notices within Derivative Works that You distribute, alongside
|
|
906
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
907
|
+
that such additional attribution notices cannot be construed
|
|
908
|
+
as modifying the License.
|
|
909
|
+
|
|
910
|
+
You may add Your own copyright statement to Your modifications and
|
|
911
|
+
may provide additional or different license terms and conditions
|
|
912
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
913
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
914
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
915
|
+
the conditions stated in this License.
|
|
916
|
+
|
|
917
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
918
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
919
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
920
|
+
this License, without any additional terms or conditions.
|
|
921
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
922
|
+
the terms of any separate license agreement you may have executed
|
|
923
|
+
with Licensor regarding such Contributions.
|
|
924
|
+
|
|
925
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
926
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
927
|
+
except as required for reasonable and customary use in describing the
|
|
928
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
929
|
+
|
|
930
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
931
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
932
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
933
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
934
|
+
implied, including, without limitation, any warranties or conditions
|
|
935
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
936
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
937
|
+
appropriateness of using or redistributing the Work and assume any
|
|
938
|
+
risks associated with Your exercise of permissions under this License.
|
|
939
|
+
|
|
940
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
941
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
942
|
+
unless required by applicable law (such as deliberate and grossly
|
|
943
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
944
|
+
liable to You for damages, including any direct, indirect, special,
|
|
945
|
+
incidental, or consequential damages of any character arising as a
|
|
946
|
+
result of this License or out of the use or inability to use the
|
|
947
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
948
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
949
|
+
other commercial damages or losses), even if such Contributor
|
|
950
|
+
has been advised of the possibility of such damages.
|
|
951
|
+
|
|
952
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
953
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
954
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
955
|
+
or other liability obligations and/or rights consistent with this
|
|
956
|
+
License. However, in accepting such obligations, You may act only
|
|
957
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
958
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
959
|
+
defend, and hold each Contributor harmless for any liability
|
|
960
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
961
|
+
of your accepting any such warranty or additional liability.
|
|
962
|
+
|
|
963
|
+
END OF TERMS AND CONDITIONS
|
|
964
|
+
|
|
965
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
966
|
+
|
|
967
|
+
To apply the Apache License to your work, attach the following
|
|
968
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
969
|
+
replaced with your own identifying information. (Don't include
|
|
970
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
971
|
+
comment syntax for the file format. We also recommend that a
|
|
972
|
+
file or class name and description of purpose be included on the
|
|
973
|
+
same "printed page" as the copyright notice for easier
|
|
974
|
+
identification within third-party archives.
|
|
975
|
+
|
|
976
|
+
Copyright [yyyy] [name of copyright owner]
|
|
977
|
+
|
|
978
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
979
|
+
you may not use this file except in compliance with the License.
|
|
980
|
+
You may obtain a copy of the License at
|
|
981
|
+
|
|
982
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
983
|
+
|
|
984
|
+
Unless required by applicable law or agreed to in writing, software
|
|
985
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
986
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
987
|
+
See the License for the specific language governing permissions and
|
|
988
|
+
limitations under the License.
|
|
989
|
+
```
|
|
990
|
+
|
|
991
|
+
### Additional Attribution. (upstream AUTHORS file, verbatim)
|
|
992
|
+
|
|
993
|
+
```
|
|
994
|
+
Original Project Lead:
|
|
995
|
+
----------------------
|
|
996
|
+
Yesudeep Mangalapilly <yesudeep@google.com>
|
|
997
|
+
|
|
998
|
+
Current Project Lead:
|
|
999
|
+
---------------------
|
|
1000
|
+
Mickaël Schoentgen <contact@tiger-222.fr>
|
|
1001
|
+
|
|
1002
|
+
Contributors in alphabetical order:
|
|
1003
|
+
-----------------------------------
|
|
1004
|
+
Adrian Tejn Kern <tejnkern@gmail.com>
|
|
1005
|
+
Andrew Schaaf <andrew@andrewschaaf.com>
|
|
1006
|
+
Danilo de Jesus da Silva Bellini <danilo.bellini@gmail.com>
|
|
1007
|
+
David LaPalomento <dlapalomento@gmail.com>
|
|
1008
|
+
dvogel <dvogel@wlscapi.uwsc.wisc.edu>
|
|
1009
|
+
Filip Noetzel <filip@j03.de>
|
|
1010
|
+
Gary van der Merwe <garyvdm@garyvdm.localdomain>
|
|
1011
|
+
gfxmonk <tim3d.junk@gmail.com>
|
|
1012
|
+
Gora Khargosh <gora.khargosh@gmail.com>
|
|
1013
|
+
Hannu Valtonen <hannu.valtonen@ohmu.fi>
|
|
1014
|
+
Jesse Printz <jesse@jonypawks.net>
|
|
1015
|
+
Kurt McKee <contactme@kurtmckee.org>
|
|
1016
|
+
Léa Klein <lklein@nuxeo.com>
|
|
1017
|
+
Luke McCarthy <luke@iogopro.co.uk>
|
|
1018
|
+
Lukáš Lalinský <lalinsky@gmail.com>
|
|
1019
|
+
Malthe Borch <mborch@gmail.com>
|
|
1020
|
+
Martin Kreichgauer <kreichgauer@gmail.com>
|
|
1021
|
+
Martin Kreichgauer <martin@kreichgauer.com>
|
|
1022
|
+
Mike Lundy <mike@fluffypenguin.org>
|
|
1023
|
+
Nicholas Hairs <info+watchdog@nicholashairs.com>
|
|
1024
|
+
Raymond Hettinger <python@rcn.com>
|
|
1025
|
+
Roman Ovchinnikov <coolthecold@gmail.com>
|
|
1026
|
+
Rotem Yaari <vmalloc@gmail.com>
|
|
1027
|
+
Ryan Kelly <ryan@rfk.id.au>
|
|
1028
|
+
Senko Rasic <senko.rasic@dobarkod.hr>
|
|
1029
|
+
Senko Rašić <senko@senko.net>
|
|
1030
|
+
Shane Hathaway <shane@hathawaymix.org>
|
|
1031
|
+
Simon Pantzare <simon@pewpewlabs.com>
|
|
1032
|
+
Simon Pantzare <simpa395@student.liu.se>
|
|
1033
|
+
Steven Samuel Cole <steven.samuel.cole@gmail.com>
|
|
1034
|
+
Stéphane Klein <stephane@harobed.org>
|
|
1035
|
+
Thomas Guest <tag@wordaligned.org>
|
|
1036
|
+
Thomas Heller <theller@ctypes.org>
|
|
1037
|
+
Tim Cuthbertson <tim+github@gfxmonk.net>
|
|
1038
|
+
Todd Whiteman <toddw@activestate.com>
|
|
1039
|
+
Will McGugan <will@willmcgugan.com>
|
|
1040
|
+
Yesudeep Mangalapilly <gora.khargosh@gmail.com>
|
|
1041
|
+
Yesudeep Mangalapilly <yesudeep@google.com>
|
|
1042
|
+
|
|
1043
|
+
We would like to thank these individuals for ideas:
|
|
1044
|
+
---------------------------------------------------
|
|
1045
|
+
Tim Golden <mail@timgolden.me.uk>
|
|
1046
|
+
Sebastien Martini <seb@dbzteam.org>
|
|
1047
|
+
|
|
1048
|
+
Initially we used the flask theme for the documentation which was written by
|
|
1049
|
+
----------------------------------------------------------------------------
|
|
1050
|
+
Armin Ronacher <armin.ronacher@active-4.com>
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
Watchdog also includes open source libraries or adapted code
|
|
1054
|
+
from the following projects:
|
|
1055
|
+
|
|
1056
|
+
- MacFSEvents - https://github.com/malthe/macfsevents
|
|
1057
|
+
- watch_directory.py - http://timgolden.me.uk/python/downloads/watch_directory.py
|
|
1058
|
+
- pyinotify - https://github.com/seb-m/pyinotify
|
|
1059
|
+
- fsmonitor - https://github.com/shaurz/fsmonitor
|
|
1060
|
+
- echo - http://wordaligned.org/articles/echo
|
|
1061
|
+
- Lukáš Lalinský's ordered set queue implementation:
|
|
1062
|
+
https://stackoverflow.com/questions/1581895/how-check-if-a-task-is-already-in-python-queue
|
|
1063
|
+
- Armin Ronacher's flask-sphinx-themes for the documentation:
|
|
1064
|
+
https://github.com/mitsuhiko/flask-sphinx-themes
|
|
1065
|
+
- pyfilesystem - https://github.com/PyFilesystem/pyfilesystem
|
|
1066
|
+
- get_FILE_NOTIFY_INFORMATION - http://blog.gmane.org/gmane.comp.python.ctypes/month=20070901
|
|
1067
|
+
```
|
|
1068
|
+
|
|
1069
|
+
---
|
|
1070
|
+
|
|
1071
|
+
## Component. GitPython
|
|
1072
|
+
|
|
1073
|
+
- Version requirement: `>=3.1.0`
|
|
1074
|
+
- Upstream: https://github.com/gitpython-developers/GitPython
|
|
1075
|
+
- SPDX: `BSD-3-Clause`
|
|
1076
|
+
|
|
1077
|
+
### Open Source License/Copyright Notice.
|
|
1078
|
+
|
|
1079
|
+
_Copyright (C) 2008, 2009 Michael Trier and contributors_
|
|
1080
|
+
|
|
1081
|
+
```
|
|
1082
|
+
Copyright (C) 2008, 2009 Michael Trier and contributors
|
|
1083
|
+
All rights reserved.
|
|
1084
|
+
|
|
1085
|
+
Redistribution and use in source and binary forms, with or without
|
|
1086
|
+
modification, are permitted provided that the following conditions
|
|
1087
|
+
are met:
|
|
1088
|
+
|
|
1089
|
+
* Redistributions of source code must retain the above copyright
|
|
1090
|
+
notice, this list of conditions and the following disclaimer.
|
|
1091
|
+
|
|
1092
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1093
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1094
|
+
documentation and/or other materials provided with the distribution.
|
|
1095
|
+
|
|
1096
|
+
* Neither the name of the GitPython project nor the names of
|
|
1097
|
+
its contributors may be used to endorse or promote products derived
|
|
1098
|
+
from this software without specific prior written permission.
|
|
1099
|
+
|
|
1100
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1101
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1102
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1103
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1104
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1105
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
1106
|
+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
1107
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
1108
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
1109
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1110
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1111
|
+
```
|
|
1112
|
+
|
|
1113
|
+
### Additional Attribution. (upstream AUTHORS file, verbatim)
|
|
1114
|
+
|
|
1115
|
+
```
|
|
1116
|
+
GitPython was originally written by Michael Trier.
|
|
1117
|
+
GitPython 0.2 was partially (re)written by Sebastian Thiel, based on 0.1.6 and git-dulwich.
|
|
1118
|
+
|
|
1119
|
+
Contributors are:
|
|
1120
|
+
|
|
1121
|
+
-Michael Trier <mtrier _at_ gmail.com>
|
|
1122
|
+
-Alan Briolat
|
|
1123
|
+
-Florian Apolloner <florian _at_ apolloner.eu>
|
|
1124
|
+
-David Aguilar <davvid _at_ gmail.com>
|
|
1125
|
+
-Jelmer Vernooij <jelmer _at_ samba.org>
|
|
1126
|
+
-Steve Frécinaux <code _at_ istique.net>
|
|
1127
|
+
-Kai Lautaportti <kai _at_ lautaportti.fi>
|
|
1128
|
+
-Paul Sowden <paul _at_ idontsmoke.co.uk>
|
|
1129
|
+
-Sebastian Thiel <byronimo _at_ gmail.com>
|
|
1130
|
+
-Jonathan Chu <jonathan.chu _at_ me.com>
|
|
1131
|
+
-Vincent Driessen <me _at_ nvie.com>
|
|
1132
|
+
-Phil Elson <pelson _dot_ pub _at_ gmail.com>
|
|
1133
|
+
-Bernard `Guyzmo` Pratz <guyzmo+gitpython+pub@m0g.net>
|
|
1134
|
+
-Timothy B. Hartman <tbhartman _at_ gmail.com>
|
|
1135
|
+
-Konstantin Popov <konstantin.popov.89 _at_ yandex.ru>
|
|
1136
|
+
-Peter Jones <pjones _at_ redhat.com>
|
|
1137
|
+
-Anson Mansfield <anson.mansfield _at_ gmail.com>
|
|
1138
|
+
-Ken Odegard <ken.odegard _at_ gmail.com>
|
|
1139
|
+
-Alexis Horgix Chotard
|
|
1140
|
+
-Piotr Babij <piotr.babij _at_ gmail.com>
|
|
1141
|
+
-Mikuláš Poul <mikulaspoul _at_ gmail.com>
|
|
1142
|
+
-Charles Bouchard-Légaré <cblegare.atl _at_ ntis.ca>
|
|
1143
|
+
-Yaroslav Halchenko <debian _at_ onerussian.com>
|
|
1144
|
+
-Tim Swast <swast _at_ google.com>
|
|
1145
|
+
-William Luc Ritchie
|
|
1146
|
+
-David Host <hostdm _at_ outlook.com>
|
|
1147
|
+
-A. Jesse Jiryu Davis <jesse _at_ emptysquare.net>
|
|
1148
|
+
-Steven Whitman <ninloot _at_ gmail.com>
|
|
1149
|
+
-Stefan Stancu <stefan.stancu _at_ gmail.com>
|
|
1150
|
+
-César Izurieta <cesar _at_ caih.org>
|
|
1151
|
+
-Arthur Milchior <arthur _at_ milchior.fr>
|
|
1152
|
+
-Anil Khatri <anil.soccer.khatri _at_ gmail.com>
|
|
1153
|
+
-JJ Graham <thetwoj _at_ gmail.com>
|
|
1154
|
+
-Ben Thayer <ben _at_ benthayer.com>
|
|
1155
|
+
-Dries Kennes <admin _at_ dries007.net>
|
|
1156
|
+
-Pratik Anurag <panurag247365 _at_ gmail.com>
|
|
1157
|
+
-Harmon <harmon.public _at_ gmail.com>
|
|
1158
|
+
-Liam Beguin <liambeguin _at_ gmail.com>
|
|
1159
|
+
-Ram Rachum <ram _at_ rachum.com>
|
|
1160
|
+
-Alba Mendez <me _at_ alba.sh>
|
|
1161
|
+
-Robert Westman <robert _at_ byteflux.io>
|
|
1162
|
+
-Hugo van Kemenade
|
|
1163
|
+
-Hiroki Tokunaga <tokusan441 _at_ gmail.com>
|
|
1164
|
+
-Julien Mauroy <pro.julien.mauroy _at_ gmail.com>
|
|
1165
|
+
-Patrick Gerard
|
|
1166
|
+
-Luke Twist <itsluketwist@gmail.com>
|
|
1167
|
+
-Joseph Hale <me _at_ jhale.dev>
|
|
1168
|
+
-Santos Gallegos <stsewd _at_ proton.me>
|
|
1169
|
+
-Wenhan Zhu <wzhu.cosmos _at_ gmail.com>
|
|
1170
|
+
-Eliah Kagan <eliah.kagan _at_ gmail.com>
|
|
1171
|
+
-Ethan Lin <et.repositories _at_ gmail.com>
|
|
1172
|
+
-Jonas Scharpf <jonas.scharpf _at_ checkmk.com>
|
|
1173
|
+
-Gordon Marx
|
|
1174
|
+
-Enji Cooper
|
|
1175
|
+
|
|
1176
|
+
Portions derived from other open source works and are clearly marked.
|
|
1177
|
+
```
|
|
1178
|
+
|
|
1179
|
+
---
|
|
1180
|
+
|
|
1181
|
+
## Component. ruamel.yaml
|
|
1182
|
+
|
|
1183
|
+
- Version requirement: `>=0.18.0`
|
|
1184
|
+
- Upstream: https://sourceforge.net/p/ruamel-yaml/code/ (mirror: https://pypi.org/project/ruamel.yaml/)
|
|
1185
|
+
- SPDX: `MIT`
|
|
1186
|
+
- Notes: Canonical source is SourceForge (Mercurial). LICENSE retrieved from the official PyPI sdist tarball ruamel_yaml-0.19.1.tar.gz.
|
|
1187
|
+
|
|
1188
|
+
### Open Source License/Copyright Notice.
|
|
1189
|
+
|
|
1190
|
+
_Copyright (c) 2014-2026 Anthon van der Neut, Ruamel bvba_
|
|
1191
|
+
|
|
1192
|
+
```
|
|
1193
|
+
The MIT License (MIT)
|
|
1194
|
+
|
|
1195
|
+
Copyright (c) 2014-2026 Anthon van der Neut, Ruamel bvba
|
|
1196
|
+
|
|
1197
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1198
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1199
|
+
in the Software without restriction, including without limitation the rights
|
|
1200
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1201
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1202
|
+
furnished to do so, subject to the following conditions:
|
|
1203
|
+
|
|
1204
|
+
The above copyright notice and this permission notice shall be included in
|
|
1205
|
+
all copies or substantial portions of the Software.
|
|
1206
|
+
|
|
1207
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1208
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1209
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1210
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1211
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1212
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1213
|
+
SOFTWARE.
|
|
1214
|
+
```
|
|
1215
|
+
|
|
1216
|
+
---
|
|
1217
|
+
|