mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-14 00:17:08 +00:00
26 lines
685 B
Bash
Executable file
26 lines
685 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
### Bash Environment Setup
|
|
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
|
|
# set -o xtrace
|
|
set -o errexit
|
|
set -o errtrace
|
|
set -o nounset
|
|
set -o pipefail
|
|
IFS=$'\n'
|
|
|
|
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
|
|
cd "$REPO_DIR"
|
|
|
|
# Generate pdm.lock, requirements.txt, and package-lock.json
|
|
bash ./bin/lock_pkgs.sh
|
|
source .venv/bin/activate
|
|
|
|
echo "[+] Building sdist, bdist_wheel, and egg_info"
|
|
rm -Rf build dist
|
|
uv build
|
|
cp dist/* ./pip_dist/
|
|
|
|
echo
|
|
echo "[√] Finished. Don't forget to commit the new sdist and wheel files in ./pip_dist/"
|