From fc8c4a6a576655f5676b7e8bb7cf6ec05ba6c880 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 17 Jan 2023 00:09:44 -0500 Subject: [PATCH] add build environment setup script --- setup | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 setup diff --git a/setup b/setup new file mode 100755 index 0000000..3aa62e5 --- /dev/null +++ b/setup @@ -0,0 +1,5 @@ +#!/bin/bash + +python -m venv --clear venv +source venv/bin/activate +pip install --require-hashes --only-binary :all: -r requirements.txt