indent
This commit is contained in:
parent
0b98aaa996
commit
3de52a3dd4
1 changed files with 35 additions and 35 deletions
70
py.pi.sh
70
py.pi.sh
|
@ -1,37 +1,37 @@
|
||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
set \
|
set \
|
||||||
"pip" \
|
"pip" \
|
||||||
"setuptools" \
|
"setuptools" \
|
||||||
"wheel" \
|
"wheel" \
|
||||||
\
|
\
|
||||||
"uv" \
|
"uv" \
|
||||||
\
|
\
|
||||||
"pelican" \
|
"pelican" \
|
||||||
\
|
\
|
||||||
"hatch" \
|
"hatch" \
|
||||||
\
|
\
|
||||||
"Sphinx" \
|
"Sphinx" \
|
||||||
"sphinx-rtd-theme" \
|
"sphinx-rtd-theme" \
|
||||||
\
|
\
|
||||||
"gitlint" \
|
"gitlint" \
|
||||||
\
|
\
|
||||||
"pydoclint" \
|
"pydoclint" \
|
||||||
"pylint" \
|
"pylint" \
|
||||||
"ruff" \
|
"ruff" \
|
||||||
\
|
\
|
||||||
"pytest" \
|
"pytest" \
|
||||||
\
|
\
|
||||||
"toml" \
|
"toml" \
|
||||||
\
|
\
|
||||||
"twine" \
|
"twine" \
|
||||||
\
|
\
|
||||||
"mypy" \
|
"mypy" \
|
||||||
"pyright" \
|
"pyright" \
|
||||||
\
|
\
|
||||||
"ruamel.yaml" \
|
"ruamel.yaml" \
|
||||||
"PyYAML" \
|
"PyYAML" \
|
||||||
"types-PyYAML" \
|
"types-PyYAML"
|
||||||
|
|
||||||
file="$(readlink --canonicalize-existing "${0}")"
|
file="$(readlink --canonicalize-existing "${0}")"
|
||||||
root="$(dirname "${file}")"
|
root="$(dirname "${file}")"
|
||||||
|
@ -39,12 +39,12 @@ root="${root}/root/py/pi"
|
||||||
tmp="${root}/tmp"
|
tmp="${root}/tmp"
|
||||||
|
|
||||||
rm --force --recursive \
|
rm --force --recursive \
|
||||||
~/.cache/pip "${root}"
|
~/.cache/pip "${root}"
|
||||||
|
|
||||||
python3 -m pip \
|
python3 -m pip \
|
||||||
download \
|
download \
|
||||||
--dest "${root}" \
|
--dest "${root}" \
|
||||||
"${@}"
|
"${@}"
|
||||||
|
|
||||||
prefix="Name: "
|
prefix="Name: "
|
||||||
for wheel in "${root}/"*; do
|
for wheel in "${root}/"*; do
|
||||||
|
|
Loading…
Reference in a new issue