Using `python setup.py develop` did not manage to install the required dependencies. This updates `script/setup` to use `pip install -e .` instead in order to resolve the required dependencies.
11 lines
140 B
Bash
Executable file
11 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
# Setups the repository.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
git submodule init
|
|
script/bootstrap
|
|
|
|
pip3 install -e .
|