From f683e23ba3f74881dbc196af4465b736c3365509 Mon Sep 17 00:00:00 2001 From: danielwilczak101 <44122838+danielwilczak101@users.noreply.github.com> Date: Fri, 4 Dec 2020 03:24:22 -0500 Subject: [PATCH] Setup.py now had tabulate included and update version number --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eefabd1..77704cc 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ setup( ], install_requires = ["matplotlib ~= 3.3.2", "pyserial ~= 3.4", - "pytest>=3.7" + "pytest>=3.7", + "tabulate >=0.8.7" ], )