From 8795b4bb790791f118911027a32b7d048aa98500 Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Sun, 16 Aug 2020 15:35:03 +0200 Subject: [PATCH] move requirements to own file --- .gitignore | 1 - README.md | 11 ----------- requirements.txt | 8 ++++++++ 3 files changed, 8 insertions(+), 12 deletions(-) create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore index c937d1f..347f385 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,6 @@ __py* *.dbf *.DBF *.xls -*.txt *.pyc *.log *.zip diff --git a/README.md b/README.md index 5e701b3..cfb1f44 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,6 @@ ## What is this? This tool was developed to enable easy analysis of USB-Dataloggers that record humidity and/or temperature, supporting a variety of formats with a comfortable, minimalistic and easy to use, interface. The output is highly configurable, check the example-``config`` file for details. -## Dependencies (pip3) - - tkinter - language - matplotlib - codecs - dbfread - PIL - PyQt5 - fbs - ## Supported Formats - .xbf (XAML Binary Format) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..969aaa2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +requests +language +matplotlib +codecs +dbfread +PIL +PyQt5 +fbs