-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
Django==4.0.2 | ||
# MySQL Database Connector | ||
mysqlclient==2.1.0 | ||
# Docker | ||
docker==5.0.0 | ||
# we are not allowed to use Django REST Framework | ||
|
||
# other dependencies | ||
requests==2.26.0 # for making HTTP requests | ||
|
||
# for testing | ||
pytest==7.0.1 | ||
|
||
# for linting | ||
flake8==4.0.1 | ||
|
||
# for formatting | ||
black==21.12b0 | ||
|
||
# for type checking | ||
mypy==0.910 # for static type checking of Python code | ||
|
||
# for documentation | ||
sphinx==4.3.0 | ||
|
||
# for deployment | ||
gunicorn==20.1.0 | ||
|
||
# for database migrations | ||
django-crispy-forms==1.13.0 | ||
|
||
# for security | ||
django-sslserver==0.27 | ||
|
||
# for email | ||
django-anymail==9.0.0 | ||
|
||
# for pagination in Django, pagination is the process of dividing a large list of items into smaller pages | ||
django-bootstrap-pagination==1.10.0 | ||
|
||
# for filtering | ||
django-filter==2.4.0 | ||
|
||
# for search | ||
django-haystack==3.0 | ||
|
||
# for image processing | ||
Pillow==9.0.0 # for image processing in Django | ||
|
||
# for caching | ||
django-redis==5.0.0 # for caching in Django applications using Redis as the backend cache | ||
|
||
nginx==0.1.0 # for serving static files and load balancing | ||
|
||
# for logging | ||
django-logging==0.1.0 | ||
|
||
asgiref==3.5.0 # for ASGI support in Django | ||
|
||
# for websockets | ||
channels==3.0.4 | ||
|
||
idna==3.3 # for handling internationalized domain names in Python | ||
|
||
# for handling timezone | ||
pytz==2021.3 # for handling timezone in Python | ||
|
||
# for handling dates and times | ||
python-dateutil==2.8.2 # for handling dates and times in Python | ||
|
||
# for handling JSON data | ||
simplejson==3.17.5 # for encoding and decoding JSON data in Python | ||
|
||
# for handling URLs | ||
urllib3==1.26.8 # for handling URLs in Python | ||
|
||
sqlparse==0.4.2 # for parsing SQL statements in Python | ||
|
||
PyYAML==6.0 # for parsing YAML files in Python | ||
|
||
typing_extensions==4.0.1 # for adding type hints to Python code |