-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (54 loc) · 1.6 KB
/
setup.py
File metadata and controls
55 lines (54 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
setup(
name='pele',
version='1.5.0',
long_description='REST API for HySDS Datasets',
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',
'Flask-Assets>=2.0',
'Flask-Bcrypt>=0.7.1',
'Flask-Caching>=1.10.1',
'Flask-Cors>=3.0.10',
'Flask-DebugToolbar>=0.11.0',
'Flask-HTTPAuth>=4.4.0',
'Flask-Limiter>=1.4',
'Flask-Login>=0.5.0',
'Flask-Mail>=0.9.1',
'Flask-Migrate>=2.7.0', # may need to look into sdscli to update this to >=3.0.0
'Flask-Script>=2.0.6',
'Flask-SQLAlchemy>=3.0.0',
'Flask-Testing>=0.8.1',
'Flask-WTF>=0.15.1',
"elasticsearch>=7.0.0,<7.14.0",
'elasticsearch-dsl>=7.0.0,<7.4.0',
'opensearch-py>=2.3.0',
'shapely>=1.5.15',
'PyJWT==1.7.1',
'WTForms>=2.0.0',
'gunicorn',
'gevent',
'eventlet',
'supervisor',
'requests',
'simpleldap',
'pyshp',
'Cython',
# 'Cartopy==0.13.1',
'redis',
'cryptography',
'bcrypt==3.2.2',
'coverage',
'webassets',
'lxml',
'nodeenv',
'botocore',
# 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",
"rich",
]
)