-
Notifications
You must be signed in to change notification settings - Fork 30
/
requirements-to-freeze.txt
91 lines (61 loc) · 1.73 KB
/
requirements-to-freeze.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# ==============================
# Web server
# ==============================
Django>4.2,<5
gunicorn
dj_static
django-samesite-none # Middleware to work around https://code.djangoproject.com/ticket/30862
# ==============================
# Background processing
# ==============================
celery
importlib-metadata<5 # https://stackoverflow.com/a/74125067/123776
django-celery-results
# ==============================
# Database and Persistence
# ==============================
# DB Settings and Management
psycopg[binary]==3.1.17
dj-database-url
django-object-actions>=3 # https://github.com/crccheck/django-object-actions/releases
# Caching
django-redis<4.12
django-cache-url
# File Storage
boto3
django-storages
# ==============================
# User Accounts and Social Media
# ==============================
django-loginas>=0.3.11
social-auth-core
social-auth-app-django>=5 # https://github.com/python-social-auth/social-app-django/blob/master/CHANGELOG.md
python-social-auth==0.2.21 # <-- Just for the migrations
django-cors-headers
# ==============================
# REST API
# ==============================
djangorestframework>=3.14,<3.15
djangorestframework-csv==1.3.0
--extra-index-url https://us-central1-python.pkg.dev/poepublic-shareabouts/pypi/simple/
shareabouts-djangorestframework-bulk==0.2.1
six
markdown<3 # For browsable API docs
python-dateutil
ujson
Pillow
# The Django admin interface
django-ace
# The manager interface
requests
# ==============================
# Testing, validating, and debugging
# ==============================
mock
mock_django
responses
django-debug-toolbar>3
sentry-sdk[django] # For Sentry error logging
# - - - - - - - - - - - - - - - -
# For DRF 0.4 (deprecated)
URLObject>=0.6.0