Skip to content

Commit

Permalink
Install build and twine as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmlorg committed Jun 17, 2024
1 parent 1515c83 commit a47c065
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion activate
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ if [ ! -d .venv ]; then
python3 -m venv .venv --prompt="$(basename $(readlink -f .))"
fi

if [ ! -f .venv/bin/build ]; then
echo 'exec python -m build "$@"' > .venv/bin/build
chmod +x .venv/bin/build
fi

source .venv/bin/activate

pip install -U pip setuptools
if [ -d ../ntelebot ]; then
pip install -U -e ../ntelebot
fi
pip install -U -e .
pip install -U -r requirements-dev.txt
pip install -U -r requirements-dev.txt build twine

0 comments on commit a47c065

Please sign in to comment.