From 999eb4e8294b3b04cd37725443aaae3f942dc754 Mon Sep 17 00:00:00 2001 From: Martin Raspaud Date: Wed, 19 Aug 2020 12:46:14 +0200 Subject: [PATCH] Add requests to the requirements --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1a5a3ac..7146e49 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,6 @@ packages=find_packages(), package_data={'pyorbital': [os.path.join('etc', 'platforms.txt')]}, scripts=['bin/fetch_tles.py', ], - install_requires=['numpy>=1.11.0,!=1.14.0', 'scipy'], + install_requires=['numpy>=1.11.0,!=1.14.0', 'scipy', 'requests'], zip_safe=False, )