From b2bbd4207d10f0ce78a9c3cc63e6d0282922d502 Mon Sep 17 00:00:00 2001 From: Wai Phyo Date: Wed, 7 Sep 2022 15:14:58 -0700 Subject: [PATCH] fix: require libraries at the worng location --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df01ea63..667856db 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ from setuptools import find_packages, setup install_requires = [ + 'pystac', 'jsonschema', 'fastjsonschema', 'xmltodict', 'requests' ] flask_requires = [ - 'pystac', 'jsonschema', 'flask===2.0.1', 'flask_restful===0.3.9', 'flask-restx===0.5.0', # to create Flask server 'gevent===21.8.0', 'greenlet===1.1.1', # to run flask server 'werkzeug===2.0.1',