-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.11 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.11 KB
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
34
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name='grq2',
version='2.3.1',
long_description='GeoRegionQuery REST API using ElasticSearch backend',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3.12',
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",
],
extras_require={
'dev': [
'pytest>=7.4.0',
'pytest-cov>=4.1.0',
'black>=23.0.0',
'flake8>=6.0.0',
'isort>=5.12.0',
]
}
)