-
Notifications
You must be signed in to change notification settings - Fork 1
/
requirements.txt
36 lines (29 loc) · 1004 Bytes
/
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
26
27
28
29
30
31
32
33
34
35
36
# This file collects all required third-party applications that are needed
# to run this project. Later you can install all these apps in a row
# using pip. Example::
#
# pip install -U -r requirements.txt
# Core requirements
Django>=1.11.27,<1.12
django-environ==0.4.1
djangorestframework>=3.9.1,<3.10
tzlocal==1.5.1
uWSGI
# Database bindings - uncomment any of the below libraries depending on the
# database that will be used for the project. Since Django 1.2, multi-database
# support has been added, therefore Django can connect to multiple databases
# if the data model is spread out across multiple databases. Note: SQLite
# is supported natively by Python 2.5+
psycopg2-binary==2.7.5
# python-mysql
# cx_Oracle
# Cache backend support
django-redis-sessions==0.6.1
# For LDAP supoort, install python-ldap. If the PyPi version does not
# install properly, try using the one in the src/ directory
python-ldap==3.2.0
#encryption algorithms
pycryptodome==3.8.2
# Testing
mock
parameterized