You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
429 B
17 lines
429 B
#!/bin/bash
|
|
set -e
|
|
|
|
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
|
|
# TODO: why doesn't uv do this?
|
|
export PYTHONPATH=$BASEDIR
|
|
|
|
# *** dependencies install ***
|
|
if ! command -v uv &>/dev/null; then
|
|
echo "'uv' is not installed. Installing 'uv'..."
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
fi
|
|
|
|
export UV_PROJECT_ENVIRONMENT="$BASEDIR/.venv"
|
|
uv sync --all-extras
|
|
source "$PYTHONPATH/.venv/bin/activate"
|
|
|