forked from devcontainers-extra/features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
49 lines (49 loc) 路 1.56 KB
/
Copy pathdevcontainer-feature.json
File metadata and controls
49 lines (49 loc) 路 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "Pipx package",
"id": "pipx-package",
"version": "1.1.10",
"description": "Installs a pipx package.",
"documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/pipx-package",
"installsAfter": [
"ghcr.io/devcontainers/features/python"
],
"options": {
"package": {
"type": "string",
"proposals": [
"black"
],
"default": "",
"description": "Select the pipx package to install."
},
"version": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Select the version of the pipx package to install."
},
"injections": {
"type": "string",
"proposals": [
"pylint pytest"
],
"default": "",
"description": "Space delimitered list of python packages to inject into the main package env"
},
"includeDeps": {
"default": false,
"description": "Include apps of dependent packages",
"type": "boolean"
},
"interpreter": {
"type": "string",
"proposals": [
"python3"
],
"default": "",
"description": "Force python interpreter to be use (must already exists on the container). If none selected (the default) then python3 will be used (and will be installed in case it does not exists)"
}
}
}