This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
requirements.in
133 lines (97 loc) · 2.11 KB
/
requirements.in
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# Update requirements.txt after making changes to this file, by
# running:
# ./scripts/update-requirements
#
# To upgrade pinned versions, run:
# ./scripts/update-requirements --upgrade
## Serving
# Server
gunicorn
# Serve static files from wsgi; used in development, not production
whitenoise
# Read .env files of secrets, and those from GCP secrets
python-dotenv
# See below for google-cloud-secret-manager
## Django and related extensions
# Core django
django==3.2.4
# Authentication
social-auth-app-django
# CORS for our /api/
django-cors-headers
# Verify that migrations are backwards compatable
django-migration-linter
# SQL dashboard at /dashboard/
django-sql-dashboard==1.0
# Version history in Django admin
django-reversion
django-reversion-compare
# Custom menus for Django admin interface
django-admin-tools
# Cryptography for JWT parsing and validation
python-jose
## Data storage
psycopg2-binary
dj-database-url
## Observability
sentry-sdk
honeycomb-beeline
prometheus_client
## Docs
docutils
Markdown
## Data validation
vaccine-feed-ingest-schema==1.2.5
pydantic==1.8.2
email-validator==1.1.3
## To upload the API export to GCS
# Pinned, see https://github.com/CAVaccineInventory/vial/issues/601
google-api-core==1.30.0
google-auth==1.32.0
google-cloud-core==1.6.0
google-cloud-secret-manager==2.5.0
google-cloud-storage==1.38.0
google-crc32c==1.1.2
google-resumable-media==1.3.1
googleapis-common-protos==1.53.0
grpc-google-iam-v1==0.12.3
## Scooby timezone data
timezonefinder[numba]
## Serialization
orjson
### Development
# Better interactive shell
ipython
# Typing and validation
mypy
django-stubs
types-Markdown
types-pytz
types-requests
types-python-dateutil
types-protobuf
types-orjson
types-pkg_resources
# Debug toolbar (dev only, not production)
django-debug-toolbar>=3.2.1
# Testing
pytest-django
pytest-cov
pytest-dotenv
requests-mock
time-machine
pytest-httpx
factory_boy
# Formatting
black
isort
flake8
# Dependency management
pip-tools
## Manual data imports
github-contents
click
httpx
python-dateutil
## Please add new dependencies in a relevant category above, or make a
## new one.