{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CombinedOptions", "description": "Metadata and configuration for uv.", "type": "object", "properties": { "cache-dir": { "type": [ "string", "null" ] }, "compile-bytecode": { "type": [ "boolean", "null" ] }, "config-settings": { "anyOf": [ { "$ref": "#/definitions/ConfigSettings" }, { "type": "null" } ] }, "dev-dependencies": { "description": "PEP 508-style requirements, e.g., `flask==3.0.0`, or `black @ https://...`.", "type": [ "array", "null" ], "items": { "type": "string" } }, "exclude-newer": { "anyOf": [ { "$ref": "#/definitions/ExcludeNewer" }, { "type": "null" } ] }, "extra-index-url": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/IndexUrl" } }, "find-links": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/FlatIndexLocation" } }, "index-strategy": { "anyOf": [ { "$ref": "#/definitions/IndexStrategy" }, { "type": "null" } ] }, "index-url": { "description": "The URL of the Python package index (by default: ).\n\nAccepts either a repository compliant with PEP 503 (the simple repository API), or a local directory laid out in the same format.\n\nThe index provided by this setting is given lower priority than any indexes specified via [`extra_index_url`](#extra-index-url).", "anyOf": [ { "$ref": "#/definitions/IndexUrl" }, { "type": "null" } ] }, "keyring-provider": { "anyOf": [ { "$ref": "#/definitions/KeyringProviderType" }, { "type": "null" } ] }, "link-mode": { "anyOf": [ { "$ref": "#/definitions/LinkMode" }, { "type": "null" } ] }, "managed": { "description": "Whether the project is managed by `uv`. If `false`, `uv` will ignore the project when `uv run` is invoked.", "type": [ "boolean", "null" ] }, "native-tls": { "type": [ "boolean", "null" ] }, "no-binary": { "type": [ "boolean", "null" ] }, "no-binary-package": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/PackageName" } }, "no-build": { "type": [ "boolean", "null" ] }, "no-build-package": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/PackageName" } }, "no-cache": { "type": [ "boolean", "null" ] }, "no-index": { "type": [ "boolean", "null" ] }, "offline": { "type": [ "boolean", "null" ] }, "override-dependencies": { "description": "PEP 508 style requirements, e.g. `flask==3.0.0`, or `black @ https://...`.", "type": [ "array", "null" ], "items": { "type": "string" } }, "pip": { "anyOf": [ { "$ref": "#/definitions/PipOptions" }, { "type": "null" } ] }, "prerelease": { "anyOf": [ { "$ref": "#/definitions/PreReleaseMode" }, { "type": "null" } ] }, "preview": { "type": [ "boolean", "null" ] }, "python-fetch": { "anyOf": [ { "$ref": "#/definitions/PythonFetch" }, { "type": "null" } ] }, "python-preference": { "anyOf": [ { "$ref": "#/definitions/PythonPreference" }, { "type": "null" } ] }, "reinstall": { "type": [ "boolean", "null" ] }, "reinstall-package": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/PackageName" } }, "resolution": { "anyOf": [ { "$ref": "#/definitions/ResolutionMode" }, { "type": "null" } ] }, "sources": { "type": [ "object", "null" ], "additionalProperties": { "$ref": "#/definitions/Source" } }, "upgrade": { "type": [ "boolean", "null" ] }, "upgrade-package": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Requirement" } }, "workspace": { "description": "The workspace definition for the project, if any.", "anyOf": [ { "$ref": "#/definitions/ToolUvWorkspace" }, { "type": "null" } ] } }, "definitions": { "AnnotationStyle": { "description": "Indicate the style of annotation comments, used to indicate the dependencies that requested each package.", "oneOf": [ { "description": "Render the annotations on a single, comma-separated line.", "type": "string", "enum": [ "line" ] }, { "description": "Render each annotation on its own line.", "type": "string", "enum": [ "split" ] } ] }, "ConfigSettingValue": { "oneOf": [ { "description": "The value consists of a single string.", "type": "object", "required": [ "String" ], "properties": { "String": { "type": "string" } }, "additionalProperties": false }, { "description": "The value consists of a list of strings.", "type": "object", "required": [ "List" ], "properties": { "List": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false } ] }, "ConfigSettings": { "description": "Settings to pass to a PEP 517 build backend, structured as a map from (string) key to string or list of strings.\n\nSee: ", "type": "object", "additionalProperties": { "$ref": "#/definitions/ConfigSettingValue" } }, "ExcludeNewer": { "description": "Exclude distributions uploaded after the given timestamp.\n\nAccepts both RFC 3339 timestamps (e.g., `2006-12-02T02:07:43Z`) and UTC dates in the same format (e.g., `2006-12-02`).", "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}(T\\d{2}:\\d{2}:\\d{2}(Z|[+-]\\d{2}:\\d{2}))?$" }, "ExtraName": { "description": "The normalized name of an extra dependency.\n\nConverts the name to lowercase and collapses runs of `-`, `_`, and `.` down to a single `-`. For example, `---`, `.`, and `__` are all converted to a single `-`.\n\nSee: - - ", "type": "string" }, "FlatIndexLocation": { "description": "The path to a directory of distributions, or a URL to an HTML file with a flat listing of distributions.", "type": "string", "format": "uri" }, "IndexStrategy": { "oneOf": [ { "description": "Only use results from the first index that returns a match for a given package name.\n\nWhile this differs from pip's behavior, it's the default index strategy as it's the most secure.", "type": "string", "enum": [ "first-index" ] }, { "description": "Search for every package name across all indexes, exhausting the versions from the first index before moving on to the next.\n\nIn this strategy, we look for every package across all indexes. When resolving, we attempt to use versions from the indexes in order, such that we exhaust all available versions from the first index before moving on to the next. Further, if a version is found to be incompatible in the first index, we do not reconsider that version in subsequent indexes, even if the secondary index might contain compatible versions (e.g., variants of the same versions with different ABI tags or Python version constraints).\n\nSee: ", "type": "string", "enum": [ "unsafe-first-match" ] }, { "description": "Search for every package name across all indexes, preferring the \"best\" version found. If a package version is in multiple indexes, only look at the entry for the first index.\n\nIn this strategy, we look for every package across all indexes. When resolving, we consider all versions from all indexes, choosing the \"best\" version found (typically, the highest compatible version).\n\nThis most closely matches pip's behavior, but exposes the resolver to \"dependency confusion\" attacks whereby malicious actors can publish packages to public indexes with the same name as internal packages, causing the resolver to install the malicious package in lieu of the intended internal package.\n\nSee: ", "type": "string", "enum": [ "unsafe-best-match" ] } ] }, "IndexUrl": { "description": "The URL of an index to use for fetching packages (e.g., `https://pypi.org/simple`).", "type": "string", "format": "uri" }, "KeyringProviderType": { "description": "Keyring provider type to use for credential lookup.", "oneOf": [ { "description": "Do not use keyring for credential lookup.", "type": "string", "enum": [ "disabled" ] }, { "description": "Use the `keyring` command for credential lookup.", "type": "string", "enum": [ "subprocess" ] } ] }, "LinkMode": { "oneOf": [ { "description": "Clone (i.e., copy-on-write) packages from the wheel into the site packages.", "type": "string", "enum": [ "clone" ] }, { "description": "Copy packages from the wheel into the site packages.", "type": "string", "enum": [ "copy" ] }, { "description": "Hard link packages from the wheel into the site packages.", "type": "string", "enum": [ "hardlink" ] } ] }, "PackageName": { "description": "The normalized name of a package.\n\nConverts the name to lowercase and collapses runs of `-`, `_`, and `.` down to a single `-`. For example, `---`, `.`, and `__` are all converted to a single `-`.\n\nSee: ", "type": "string" }, "PackageNameSpecifier": { "description": "The name of a package, or `:all:` or `:none:` to select or omit all packages, respectively.", "type": "string", "pattern": "^(:none:|:all:|([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9._-]*[a-zA-Z0-9]))$" }, "PipOptions": { "description": "A `[tool.uv.pip]` section.", "type": "object", "properties": { "all-extras": { "type": [ "boolean", "null" ] }, "allow-empty-requirements": { "type": [ "boolean", "null" ] }, "annotation-style": { "anyOf": [ { "$ref": "#/definitions/AnnotationStyle" }, { "type": "null" } ] }, "break-system-packages": { "type": [ "boolean", "null" ] }, "compile-bytecode": { "type": [ "boolean", "null" ] }, "concurrent-builds": { "type": [ "integer", "null" ], "format": "uint", "minimum": 1.0 }, "concurrent-downloads": { "type": [ "integer", "null" ], "format": "uint", "minimum": 1.0 }, "concurrent-installs": { "type": [ "integer", "null" ], "format": "uint", "minimum": 1.0 }, "config-settings": { "anyOf": [ { "$ref": "#/definitions/ConfigSettings" }, { "type": "null" } ] }, "custom-compile-command": { "type": [ "string", "null" ] }, "emit-build-options": { "type": [ "boolean", "null" ] }, "emit-find-links": { "type": [ "boolean", "null" ] }, "emit-index-annotation": { "type": [ "boolean", "null" ] }, "emit-index-url": { "type": [ "boolean", "null" ] }, "emit-marker-expression": { "type": [ "boolean", "null" ] }, "exclude-newer": { "anyOf": [ { "$ref": "#/definitions/ExcludeNewer" }, { "type": "null" } ] }, "extra": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/ExtraName" } }, "extra-index-url": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/IndexUrl" } }, "find-links": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/FlatIndexLocation" } }, "generate-hashes": { "type": [ "boolean", "null" ] }, "index-strategy": { "anyOf": [ { "$ref": "#/definitions/IndexStrategy" }, { "type": "null" } ] }, "index-url": { "anyOf": [ { "$ref": "#/definitions/IndexUrl" }, { "type": "null" } ] }, "keyring-provider": { "anyOf": [ { "$ref": "#/definitions/KeyringProviderType" }, { "type": "null" } ] }, "legacy-setup-py": { "type": [ "boolean", "null" ] }, "link-mode": { "anyOf": [ { "$ref": "#/definitions/LinkMode" }, { "type": "null" } ] }, "no-annotate": { "type": [ "boolean", "null" ] }, "no-binary": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/PackageNameSpecifier" } }, "no-build": { "type": [ "boolean", "null" ] }, "no-build-isolation": { "type": [ "boolean", "null" ] }, "no-deps": { "type": [ "boolean", "null" ] }, "no-emit-package": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/PackageName" } }, "no-header": { "description": "Exclude the comment header at the top of output file generated by `uv pip compile`.", "type": [ "boolean", "null" ] }, "no-index": { "type": [ "boolean", "null" ] }, "no-strip-extras": { "type": [ "boolean", "null" ] }, "no-strip-markers": { "type": [ "boolean", "null" ] }, "only-binary": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/PackageNameSpecifier" } }, "output-file": { "type": [ "string", "null" ] }, "prefix": { "type": [ "string", "null" ] }, "prerelease": { "anyOf": [ { "$ref": "#/definitions/PreReleaseMode" }, { "type": "null" } ] }, "python": { "type": [ "string", "null" ] }, "python-platform": { "anyOf": [ { "$ref": "#/definitions/TargetTriple" }, { "type": "null" } ] }, "python-version": { "anyOf": [ { "$ref": "#/definitions/PythonVersion" }, { "type": "null" } ] }, "reinstall": { "type": [ "boolean", "null" ] }, "reinstall-package": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/PackageName" } }, "require-hashes": { "type": [ "boolean", "null" ] }, "resolution": { "anyOf": [ { "$ref": "#/definitions/ResolutionMode" }, { "type": "null" } ] }, "strict": { "type": [ "boolean", "null" ] }, "system": { "type": [ "boolean", "null" ] }, "target": { "type": [ "string", "null" ] }, "universal": { "type": [ "boolean", "null" ] }, "upgrade": { "type": [ "boolean", "null" ] }, "upgrade-package": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Requirement" } } }, "additionalProperties": false }, "PreReleaseMode": { "oneOf": [ { "description": "Disallow all pre-release versions.", "type": "string", "enum": [ "disallow" ] }, { "description": "Allow all pre-release versions.", "type": "string", "enum": [ "allow" ] }, { "description": "Allow pre-release versions if all versions of a package are pre-release.", "type": "string", "enum": [ "if-necessary" ] }, { "description": "Allow pre-release versions for first-party packages with explicit pre-release markers in their version requirements.", "type": "string", "enum": [ "explicit" ] }, { "description": "Allow pre-release versions if all versions of a package are pre-release, or if the package has an explicit pre-release marker in its version requirements.", "type": "string", "enum": [ "if-necessary-or-explicit" ] } ] }, "PythonFetch": { "oneOf": [ { "description": "Automatically fetch managed Python installations when needed.", "type": "string", "enum": [ "automatic" ] }, { "description": "Do not automatically fetch managed Python installations; require explicit installation.", "type": "string", "enum": [ "manual" ] } ] }, "PythonPreference": { "oneOf": [ { "description": "Only use managed Python installations; never use system Python installations.", "type": "string", "enum": [ "only-managed" ] }, { "description": "Prefer installed Python installations, only download managed Python installations if no system Python installation is found.\n\nInstalled managed Python installations are still preferred over system Python installations.", "type": "string", "enum": [ "installed" ] }, { "description": "Prefer managed Python installations over system Python installations, even if fetching is required.", "type": "string", "enum": [ "managed" ] }, { "description": "Prefer system Python installations over managed Python installations.\n\nIf a system Python installation cannot be found, a managed Python installation can be used.", "type": "string", "enum": [ "system" ] }, { "description": "Only use system Python installations; never use managed Python installations.", "type": "string", "enum": [ "only-system" ] } ] }, "PythonVersion": { "description": "A Python version specifier, e.g. `3.7` or `3.8.0`.", "type": "string", "pattern": "^3\\.\\d+(\\.\\d+)?$" }, "Requirement": { "description": "A PEP 508 dependency specifier", "type": "string" }, "ResolutionMode": { "oneOf": [ { "description": "Resolve the highest compatible version of each package.", "type": "string", "enum": [ "highest" ] }, { "description": "Resolve the lowest compatible version of each package.", "type": "string", "enum": [ "lowest" ] }, { "description": "Resolve the lowest compatible version of any direct dependencies, and the highest compatible version of any transitive dependencies.", "type": "string", "enum": [ "lowest-direct" ] } ] }, "Source": { "description": "A `tool.uv.sources` value.", "anyOf": [ { "description": "A remote Git repository, available over HTTPS or SSH.\n\nExample: ```toml flask = { git = \"https://github.com/pallets/flask\", tag = \"3.0.0\" } ```", "type": "object", "required": [ "git" ], "properties": { "branch": { "type": [ "string", "null" ] }, "git": { "description": "The repository URL (without the `git+` prefix).", "type": "string", "format": "uri" }, "rev": { "type": [ "string", "null" ] }, "subdirectory": { "description": "The path to the directory with the `pyproject.toml`, if it's not in the archive root.", "type": [ "string", "null" ] }, "tag": { "type": [ "string", "null" ] } }, "additionalProperties": false }, { "description": "A remote `http://` or `https://` URL, either a wheel (`.whl`) or a source distribution (`.zip`, `.tar.gz`).\n\nExample: ```toml flask = { url = \"https://files.pythonhosted.org/packages/61/80/ffe1da13ad9300f87c93af113edd0638c75138c42a0994becfacac078c06/flask-3.0.3-py3-none-any.whl\" } ```", "type": "object", "required": [ "url" ], "properties": { "subdirectory": { "description": "For source distributions, the path to the directory with the `pyproject.toml`, if it's not in the archive root.", "type": [ "string", "null" ] }, "url": { "type": "string", "format": "uri" } }, "additionalProperties": false }, { "description": "The path to a dependency, either a wheel (a `.whl` file), source distribution (a `.zip` or `.tar.gz` file), or source tree (i.e., a directory containing a `pyproject.toml` or `setup.py` file in the root).", "type": "object", "required": [ "path" ], "properties": { "editable": { "description": "`false` by default.", "type": [ "boolean", "null" ] }, "path": { "type": "string" } }, "additionalProperties": false }, { "description": "A dependency pinned to a specific index, e.g., `torch` after setting `torch` to `https://download.pytorch.org/whl/cu118`.", "type": "object", "required": [ "index" ], "properties": { "index": { "type": "string" } }, "additionalProperties": false }, { "description": "A dependency on another package in the workspace.", "type": "object", "required": [ "workspace" ], "properties": { "editable": { "description": "`true` by default.", "type": [ "boolean", "null" ] }, "workspace": { "description": "When set to `false`, the package will be fetched from the remote index, rather than included as a workspace package.", "type": "boolean" } }, "additionalProperties": false }, { "description": "A catch-all variant used to emit precise error messages when deserializing.", "type": "object", "required": [ "git", "index", "patch", "url", "workspace" ], "properties": { "branch": { "type": [ "string", "null" ] }, "git": { "type": "string" }, "index": { "type": "string" }, "patch": { "type": "string" }, "rev": { "type": [ "string", "null" ] }, "subdirectory": { "type": [ "string", "null" ] }, "tag": { "type": [ "string", "null" ] }, "url": { "type": "string" }, "workspace": { "type": "boolean" } }, "additionalProperties": false } ] }, "String": { "type": "string" }, "TargetTriple": { "description": "The supported target triples. Each triple consists of an architecture, vendor, and operating system.\n\nSee: ", "oneOf": [ { "description": "An alias for `x86_64-pc-windows-msvc`, the default target for Windows.", "type": "string", "enum": [ "windows" ] }, { "description": "An alias for `x86_64-unknown-linux-gnu`, the default target for Linux.", "type": "string", "enum": [ "linux" ] }, { "description": "An alias for `aarch64-apple-darwin`, the default target for macOS.", "type": "string", "enum": [ "macos" ] }, { "description": "An x86 Windows target.", "type": "string", "enum": [ "x86_64-pc-windows-msvc" ] }, { "description": "An x86 Linux target. Equivalent to `x86_64-manylinux_2_17`.", "type": "string", "enum": [ "x86_64-unknown-linux-gnu" ] }, { "description": "An ARM-based macOS target, as seen on Apple Silicon devices\n\nBy default, assumes the least-recent, non-EOL macOS version (12.0), but respects the `MACOSX_DEPLOYMENT_TARGET` environment variable if set.", "type": "string", "enum": [ "aarch64-apple-darwin" ] }, { "description": "An x86 macOS target.\n\nBy default, assumes the least-recent, non-EOL macOS version (12.0), but respects the `MACOSX_DEPLOYMENT_TARGET` environment variable if set.", "type": "string", "enum": [ "x86_64-apple-darwin" ] }, { "description": "An ARM64 Linux target. Equivalent to `aarch64-manylinux_2_17`.", "type": "string", "enum": [ "aarch64-unknown-linux-gnu" ] }, { "description": "An ARM64 Linux target.", "type": "string", "enum": [ "aarch64-unknown-linux-musl" ] }, { "description": "An `x86_64` Linux target.", "type": "string", "enum": [ "x86_64-unknown-linux-musl" ] }, { "description": "An `x86_64` target for the `manylinux_2_17` platform.", "type": "string", "enum": [ "x86_64-manylinux_2_17" ] }, { "description": "An `x86_64` target for the `manylinux_2_28` platform.", "type": "string", "enum": [ "x86_64-manylinux_2_28" ] }, { "description": "An `x86_64` target for the `manylinux_2_31` platform.", "type": "string", "enum": [ "x86_64-manylinux_2_31" ] }, { "description": "An ARM64 target for the `manylinux_2_17` platform.", "type": "string", "enum": [ "aarch64-manylinux_2_17" ] }, { "description": "An ARM64 target for the `manylinux_2_28` platform.", "type": "string", "enum": [ "aarch64-manylinux_2_28" ] }, { "description": "An ARM64 target for the `manylinux_2_31` platform.", "type": "string", "enum": [ "aarch64-manylinux_2_31" ] } ] }, "ToolUvWorkspace": { "type": "object", "properties": { "exclude": { "description": "Packages to exclude as workspace members. If a package matches both `members` and `exclude`, it will be excluded.\n\nSupports both globs and explicit paths.\n\nFor more information on the glob syntax, refer to the [`glob` documentation](https://docs.rs/glob/latest/glob/struct.Pattern.html).", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/String" } }, "members": { "description": "Packages to include as workspace members.\n\nSupports both globs and explicit paths.\n\nFor more information on the glob syntax, refer to the [`glob` documentation](https://docs.rs/glob/latest/glob/struct.Pattern.html).", "type": [ "array", "null" ], "items": { "$ref": "#/definitions/String" } } } } } }