-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathPipfile
39 lines (36 loc) · 1.3 KB
/
Pipfile
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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
boto3 = "*" # Uploading files to AWS compatible endpoints -- might remove (only used once)
cryptography = "*" # Necessary for fernet fields
Django = "<5"
django-anymail = "*" # Sending mails through multiple providers
django-axes = "*" # Blocking bots/bruteforce
django-crispy-forms = "*" # Making forms better
django-environ = "*" # Getting environment variables
djangorestframework = "*" # Needed for API endpoints
gunicorn = "*" # Web server -- maybe replace with uvicorn as it seems to be faster
pyotp = "*" # TOTP 2FA authentication
requests = "*" # API calls
sentry-sdk = "*" # Error logging
sparkpost = "*" # Sending email messages through sparkpost -- might remove (there are plenty others)
twilio = "*" # Sending text messages -- might remove (only used for one or two calls)
whitenoise = "*" # Serving static files by Django
django-q-sentry = "*" # Needed for django-q error logging
croniter = "*" # Needed for django-q scheduled tasks
slack-bolt = "*"
django-q2 = "*" # Background tasks
psycopg = {extras = ["binary"], version = "*"}
[dev-packages]
coverage = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
pytest-factoryboy = "*"
freezegun = "*"
django-debug-toolbar = "*"
ruff = "*"
[requires]
python_version = "3.11"