justfiles for automating various tasks on my workstation

Add python libraries to bpython

Changed files
+8 -1
+8 -1
install.just
···
for x in "${py_tools[@]}"; do
pipx install "$x"
done
-
bpy_inject_tools=("bs4" "requests" "rich" "qbittorrent-api")
+
bpy_inject_tools=(
+
"bs4"
+
"matplotlib"
+
"pandas"
+
"qbittorrent-api"
+
"requests"
+
"rich"
+
)
for x in "${bpy_inject_tools[@]}"; do
pipx inject bpython "$x"
done