15 lines
338 B
Bash
Executable File
15 lines
338 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#use with source ./develop.env
|
|
|
|
# see: https://setuptools.pypa.io/en/latest/userguide/development_mode.html
|
|
|
|
set -e
|
|
|
|
# Create a virtual environment
|
|
python -m venv .venv
|
|
# Activate the python virtual environment
|
|
source .venv/bin/activate
|
|
# Install the package in editable mode (dynamic use of files)
|
|
pip install --editable .
|