-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
53 lines (47 loc) · 1.16 KB
/
Pipfile
File metadata and controls
53 lines (47 loc) · 1.16 KB
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
boto3 = "==1.*"
Django = "==2.2.*"
django-crispy-forms = "==1.8.*"
django-environ = "*"
django-redis = "==4.11.*"
"django-storages" = "==1.7.*"
gunicorn = "==20.*"
# If you change the docker base image to be non-alpine
# This can be changed to psycopg2-binary to get advantage from
# using wheels
"psycopg2-binary" = "*"
pyyaml = "==5.*"
"sentry-sdk" = "==0.16.*"
redis = "==3.*"
Sphinx = "*"
sphinx_rtd_theme = "*"
tg-utils = {version = "*", extras = ["model-hash"]}
djangorestframework = "==3.9.*"
django-filter = "==2.1.*"
djangorestframework_simplejwt = "==4.3.*"
django-cors-headers = "==3.0.*"
tg-react = "*"
numpy = "*"
scipy = "*"
pandas = "*"
django-request-cache = "*"
[dev-packages]
black = "==19.10b0"
django-debug-toolbar = "*"
ipdb = "*"
# Testing & quality tools
coverage = "*"
isort = "==4.*"
pytest = "==5.*"
pytest-django = "*"
pylint-django = "*"
# Note prospector is very picky about its dependencies,
# avoid specifying versions for pylint/pylint-django/astroid
# and let prospector determine which versions work together
prospector = "==1.2.*"
[requires]
python_version = "3.8"