generated from ScoopInstaller/BucketTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipx.json
45 lines (45 loc) · 1.39 KB
/
pipx.json
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
{
"version": "1.5.0",
"description": "Install and run Python applications in isolated environments",
"homepage": "https://pypa.github.io/pipx/",
"license": {
"identifier": "MIT",
"url": "https://github.com/pypa/pipx/blob/main/LICENSE"
},
"notes": [
"pipx requires Python 3 to work properly. Please make sure Python3 (python.exe) is in PATH.",
"",
"Re-open any shells for new PATH variables to work correctly."
],
"suggest": {
"Python": "python"
},
"url": "https://github.com/pypa/pipx/releases/download/1.5.0/pipx.pyz",
"hash": "D307772EB52DF8F4DD7B38523ADBE2105A61B5E90C1BE34E2F8007BE9BD4001F",
"pre_install": [
"if (!(Test-Path \"$dir\\bin\")) { New-Item \"$dir\\bin\" -ItemType Directory -Force | Out-Null }",
"if (!(Test-Path \"$dir\\pipx\")) { New-Item \"$dir\\pipx\" -ItemType Directory -Force | Out-Null }"
],
"bin": [
[
"python.exe",
"pipx",
"$dir\\pipx.pyz"
]
],
"persist": [
"bin",
"pipx"
],
"env_add_path": "bin",
"env_set": {
"PIPX_BIN_DIR": "$persist_dir\\bin",
"PIPX_HOME": "$persist_dir\\pipx"
},
"checkver": {
"github": "https://github.com/pypa/pipx"
},
"autoupdate": {
"url": "https://github.com/pypa/pipx/releases/download/$version/pipx.pyz"
}
}