f7c52fdbfb
## Summary Second part of: https://github.com/astral-sh/uv/issues/5093.
1312 lines
39 KiB
JSON
Generated
1312 lines
39 KiB
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "CombinedOptions",
|
|
"description": "Metadata and configuration for uv.",
|
|
"type": "object",
|
|
"properties": {
|
|
"cache-dir": {
|
|
"description": "Path to the cache directory.\n\nDefaults to `$HOME/Library/Caches/uv` on macOS, `$XDG_CACHE_HOME/uv` or `$HOME/.cache/uv` on Linux, and `{FOLDERID_LocalAppData}\\uv\\cache` on Windows.",
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"compile-bytecode": {
|
|
"description": "Compile Python files to bytecode after installation.\n\nBy default, does not compile Python (`.py`) files to bytecode (`__pycache__/*.pyc`), instead Python lazily does the compilation the first time a module is imported. In cases where the first start time matters, such as CLI applications and docker containers, this option can trade longer install time for faster startup.\n\nThe compile option will process the entire site-packages directory for consistency and (like pip) ignore all errors.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"config-settings": {
|
|
"description": "Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs.",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/ConfigSettings"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"dev-dependencies": {
|
|
"description": "PEP 508-style requirements, e.g., `ruff==0.5.0`, or `ruff @ https://...`.",
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
],
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"exclude-newer": {
|
|
"description": "Limit candidate packages to those that were uploaded prior to the given date.\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`).",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/ExcludeNewer"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"extra-index-url": {
|
|
"description": "Extra URLs of package indexes to use, in addition to `--index-url`.\n\nAccepts either a repository compliant with PEP 503 (the simple repository API), or a local directory laid out in the same format.\n\nAll indexes provided via this flag take priority over the index specified by [`index_url`](#index-url). When multiple indexes are provided, earlier values take priority.\n\nTo control uv's resolution strategy when multiple indexes are present, see [`index_strategy`](#index-strategy).",
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
],
|
|
"items": {
|
|
"$ref": "#/definitions/IndexUrl"
|
|
}
|
|
},
|
|
"find-links": {
|
|
"description": "Locations to search for candidate distributions, in addition to those found in the registry indexes.\n\nIf a path, the target must be a directory that contains packages as wheel files (`.whl`) or source distributions (`.tar.gz` or `.zip`) at the top level.\n\nIf a URL, the page must contain a flat list of links to package files adhering to the formats described above.",
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
],
|
|
"items": {
|
|
"$ref": "#/definitions/FlatIndexLocation"
|
|
}
|
|
},
|
|
"index-strategy": {
|
|
"description": "The strategy to use when resolving against multiple index URLs.\n\nBy default, uv will stop at the first index on which a given package is available, and limit resolutions to those present on that first index (`first-match`). This prevents \"dependency confusion\" attacks, whereby an attack can upload a malicious package under the same name to a secondary.\n\nPossible values:\n\n- `\"first-index\"`: Only use results from the first index that returns a match for a given package name. - `\"unsafe-first-match\"`: Search for every package name across all indexes, exhausting the versions from the first index before moving on to the next. - `\"unsafe-best-match\"`: 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.",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/IndexStrategy"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"index-url": {
|
|
"description": "The URL of the Python package index (by default: <https://pypi.org/simple>).\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": {
|
|
"description": "Attempt to use `keyring` for authentication for index URLs.\n\nAt present, only `--keyring-provider subprocess` is supported, which configures uv to use the `keyring` CLI to handle authentication.",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/KeyringProviderType"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"link-mode": {
|
|
"description": "The method to use when installing packages from the global cache.\n\nDefaults to `clone` (also known as Copy-on-Write) on macOS, and `hardlink` on Linux and Windows.",
|
|
"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": {
|
|
"description": "Whether to load TLS certificates from the platform's native certificate store.\n\nBy default, uv loads certificates from the bundled `webpki-roots` crate. The `webpki-roots` are a reliable set of trust roots from Mozilla, and including them in uv improves portability and performance (especially on macOS).\n\nHowever, in some cases, you may want to use the platform's native certificate store, especially if you're relying on a corporate trust root (e.g., for a mandatory proxy) that's included in your system's certificate store.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"no-binary": {
|
|
"description": "Don't install pre-built wheels.\n\nThe given packages will be built and installed from source. The resolver will still use pre-built wheels to extract package metadata, if available.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"no-binary-package": {
|
|
"description": "Don't install pre-built wheels for a specific package.",
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
],
|
|
"items": {
|
|
"$ref": "#/definitions/PackageName"
|
|
}
|
|
},
|
|
"no-build": {
|
|
"description": "Don't build source distributions.\n\nWhen enabled, resolving will not run arbitrary Python code. The cached wheels of already-built source distributions will be reused, but operations that require building distributions will exit with an error.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"no-build-package": {
|
|
"description": "Don't build source distributions for a specific package.",
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
],
|
|
"items": {
|
|
"$ref": "#/definitions/PackageName"
|
|
}
|
|
},
|
|
"no-cache": {
|
|
"description": "Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"no-index": {
|
|
"description": "Ignore all registry indexes (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"offline": {
|
|
"description": "Disable network access, relying only on locally cached data and locally available files.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"override-dependencies": {
|
|
"description": "PEP 508 style requirements, e.g. `ruff==0.5.0`, or `ruff @ https://...`.",
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
],
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"pip": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/PipOptions"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"prerelease": {
|
|
"description": "The strategy to use when considering pre-release versions.\n\nBy default, uv will accept pre-releases for packages that _only_ publish pre-releases, along with first-party requirements that contain an explicit pre-release marker in the declared specifiers (`if-necessary-or-explicit`).",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/PreReleaseMode"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"preview": {
|
|
"description": "Whether to enable experimental, preview features.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"python-fetch": {
|
|
"description": "Whether to automatically download Python when required.",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/PythonFetch"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"python-preference": {
|
|
"description": "Whether to prefer using Python installations that are already present on the system, or those that are downloaded and installed by uv.",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/PythonPreference"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"reinstall": {
|
|
"description": "Reinstall all packages, regardless of whether they're already installed.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"reinstall-package": {
|
|
"description": "Reinstall a specific package, regardless of whether it's already installed.",
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
],
|
|
"items": {
|
|
"$ref": "#/definitions/PackageName"
|
|
}
|
|
},
|
|
"resolution": {
|
|
"description": "The strategy to use when selecting between the different compatible versions for a given package requirement.\n\nBy default, uv will use the latest compatible version of each package (`highest`).",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/ResolutionMode"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"sources": {
|
|
"type": [
|
|
"object",
|
|
"null"
|
|
],
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/Source"
|
|
}
|
|
},
|
|
"upgrade": {
|
|
"description": "Allow package upgrades, ignoring pinned versions in any existing output file.",
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"upgrade-package": {
|
|
"description": "Allow upgrades for a specific package, ignoring pinned versions in any existing output file.\n\nAccepts both standalone package names (`ruff`) and version specifiers (`ruff<0.5.0`).",
|
|
"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: <https://peps.python.org/pep-0517/#config-settings>",
|
|
"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: - <https://peps.python.org/pep-0685/#specification/> - <https://packaging.python.org/en/latest/specifications/name-normalization/>",
|
|
"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: <https://peps.python.org/pep-0708/>",
|
|
"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: <https://peps.python.org/pep-0708/>",
|
|
"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: <https://packaging.python.org/en/latest/specifications/name-normalization/>",
|
|
"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": "Settings that are specific to the `uv pip` command-line interface.\n\nThese values will be ignored when running commands outside the `uv pip` namespace (e.g., `uv lock`, `uvx`).",
|
|
"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: <https://doc.rust-lang.org/nightly/rustc/platform-support.html>",
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |