8 lines
132 B
Bash
Executable file
8 lines
132 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd "`dirname "$0"`"/..
|
|
|
|
# Create virtualenv
|
|
python3 -m virtualenv venv/
|
|
# Install dependencies
|
|
venv/bin/pip install -e .
|