From 6c1469c672bf5f87adc3832d28ae321631f872ce Mon Sep 17 00:00:00 2001 From: "Mayr, Hannes" <hannes.mayr@stud.tu-darmstadt.de> Date: Wed, 21 Sep 2022 16:41:02 +0200 Subject: [PATCH] Add qrcode package as dependency and update documentation. --- README.md | 2 +- plotid/__init__.py | 2 +- setup.cfg | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bdaee1d..1c1b247 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ venv\Scripts\Activate.ps1 # Windows PowerShell ### From PyPi with pip 2. Install plotID -`pip install plotid --extra-index-url=https://test.pypi.org/simple/` +`pip install plotid` If you also want to run the unittests use `plotid[test]` instead of `plotid`. ### From source diff --git a/plotid/__init__.py b/plotid/__init__.py index d7cb4c7..306280a 100644 --- a/plotid/__init__.py +++ b/plotid/__init__.py @@ -10,5 +10,5 @@ research data, the plot is based on. Additionally, the script that created the plot will also be copied to the directory. """ -__version__ = '0.2.0' +__version__ = '0.2.1' __author__ = 'Institut Fluidsystemtechnik within nfdi4ing at TU Darmstadt' diff --git a/setup.cfg b/setup.cfg index 92f342b..dcda034 100644 --- a/setup.cfg +++ b/setup.cfg @@ -28,6 +28,7 @@ install_requires = Pillow matplotlib numpy + qrcode [options.extras_require] test = -- GitLab