-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpbt.toml
63 lines (52 loc) · 1.06 KB
/
pbt.toml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[lift]
name = "pbt"
description = """\
Python Build Tool: A BusyBox that provides `python`, `pip`, `pex`, `pex3` and `pex-tools`.\
"""
[lift.ptex]
version = "0.7.0"
[lift.scie_jump]
version = "0.14.0"
[[lift.interpreters]]
id = "cpython"
provider = "PythonBuildStandalone"
release = "20240107"
lazy = true
version = "3.8.18"
[[lift.files]]
name = "pex"
type = "blob"
digest = { size = 4124506, fingerprint = "581f7c2d61b4c24c66ba241f2a37d8f3b552f24ed22543279860f3463ac3db35" }
source = { url = "https://github.com/pantsbuild/pex/releases/download/v2.3.0/pex", lazy = true }
[[lift.commands]]
name = "pex"
exe = "#{cpython:python}"
args = [
"{pex}"
]
[[lift.commands]]
name = "pex3"
exe = "#{cpython:python}"
args = [
"{pex}"
]
[lift.commands.env.replace]
PEX_SCRIPT = "pex3"
[[lift.commands]]
name = "pex-tools"
exe = "#{cpython:python}"
args = [
"{pex}"
]
[lift.commands.env.replace]
PEX_SCRIPT = "pex-tools"
[[lift.commands]]
name = "pip"
exe = "#{cpython:python}"
args = [
"-m",
"pip"
]
[[lift.commands]]
name = "python"
exe = "#{cpython:python}"