From ea95719e99fa9fd751d5608c0a89c9e592847965 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Wed, 16 Oct 2019 20:40:36 -0700 Subject: [PATCH] Add install_requires to setup.py --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 1f25718..42a0318 100644 --- a/setup.py +++ b/setup.py @@ -16,4 +16,7 @@ setup( ], python_requires='>=3.6', packages=find_packages(), + install_requires=[ + 'numpy' + ] )