forked from broadinstitute/seqr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.txt
26 lines (24 loc) · 1.88 KB
/
requirements.txt
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
Django==3.1.13 # core server-side framework
django-anymail==8.2 # for sending emails using cloud-based mail service providers
django-csp==3.7 # for setting CSP headers
django-guardian==2.3.0 # object-level permissions for database records. Behind a major version due to missing Python 2 support
django-hijack==2.1.10 # allows admins to login as other user
django-cors-headers==3.5.0 # allows CORS requests for client-side development
social-auth-app-django==4.0.0 # the package for Django to authenticate users with social medieas
social-auth-core==3.3.3 # the Python social authentication package. Required by social-auth-app-django
elasticsearch==7.9.1 # elasticsearch client
elasticsearch-dsl==7.2.1 # elasticsearch query utilities
gunicorn==19.10.0 # web server
hail==0.2.63 # provides convenient apis for working with files in google cloud storage
jmespath==0.9.4
openpyxl==2.6.4 # library for reading/writing Excel files
pillow==8.3.2 # required dependency of Djagno ImageField-type database records
psycopg2==2.8.4 # postgres database access
pyliftover==0.4 # GRCh37/GRCh38 liftover
requests==2.22.0 # simpler way to make http requests
redis==3.3.11 # client lib for the redis in-memory database - used for caching server-side objects
requests-toolbelt==0.9.1 # for troubleshooting requests
slacker==0.13.0 # library for sending slack messages
slugify==0.0.1 # used for encoding names for guids
tqdm==4.42.1 # convenient way to create progress bar for long-running command-line operations
whitenoise==5.2.0 # simplified static file handling. Behind a major version due to missing Python 2 support