12 lines
146 B
Bash
Executable File
12 lines
146 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
self=$(dirname "$(readlink -f "$0")")
|
|
cd "${self}"
|
|
|
|
python3 -m venv venv
|
|
|
|
# install cli extras
|
|
./venv/bin/pip install -e '.'
|