From 8470e830a72b90031e37f5068b6b2732694729d5 Mon Sep 17 00:00:00 2001 From: Gerrit Beine Date: Thu, 3 Aug 2023 15:32:11 +0200 Subject: [PATCH] Use requirements.txt for installation --- install | 4 ++-- requirements.txt | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/install b/install index e833892..45d7281 100755 --- a/install +++ b/install @@ -4,5 +4,5 @@ python3 -m venv venv . venv/bin/activate -pip install bottle -pip install paho.mqtt +pip install --upgrade pip +pip install -r requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..b00a0d3 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +# Python requirements +bottle +paho-mqtt