-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (32 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from __future__ import unicode_literals
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
from setuptools import setup, find_packages
setup(
name='grq2',
version='2.1.0',
long_description='GeoRegionQuery REST API using ElasticSearch backend',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask<2.3.0', # TODO: remove kluge when Flask-DebugToolbar fixes import error
'flask-restx>=0.5.1',
"elasticsearch>=7.0.0,<7.14.0",
'opensearch-py>=2.3.0,<3.0.0',
'shapely>=1.5.15',
'Cython>=0.15.1',
'Cartopy>=0.13.1',
'future>=0.17.1',
'gunicorn',
'eventlet',
'pymongo',
'requests',
'pyshp',
'redis',
# TODO: remove this pin after fix has been made to resolve
# https://stackoverflow.com/questions/77213053/importerror-cannot-import-name-url-quote-from-werkzeug-urls
"werkzeug<3.0.0",
]
)