From bf15f5c4b4f4f54b4e99a5a912316a637c0c6ab7 Mon Sep 17 00:00:00 2001 From: Tom Gurion Date: Mon, 24 Jun 2019 15:47:24 +0100 Subject: [PATCH] Add numpy to the setup.py 'install_required' --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 91d6896..439da1c 100644 --- a/setup.py +++ b/setup.py @@ -44,4 +44,7 @@ 'Programming Language :: Python :: 3.5', 'Topic :: Scientific/Engineering :: Information Analysis', ], + install_requires=[ + 'numpy', + ], )