-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPipfile
48 lines (44 loc) · 1.2 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
40
41
42
43
44
45
46
47
48
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
channels = "==2.1.*"
daphne = "==2.2.*"
django = "==2.0.*"
django-cors-headers = "==2.2.*"
django-environ = "==0.4.*"
django-extensions = "==2.0.*"
django-filter = "==1.1.*"
django-mptt = "==0.9.*"
django-oidc-provider = {git = "https://github.com/ovidner/django-oidc-provider.git", editable = true, ref = "3445e7c8ddb52ca06830fe379601420f7adc0126"}
django-phonenumber-field = "==2.0.*"
django-redis = "==4.9.*"
django-widget-tweaks = "==1.4.*"
graphene-django = "==2.0.*"
ipython = "*"
mysqlclient = "==1.3.*"
phonenumberslite = "==8.9.*"
"psycopg2-binary" = "==2.7.*"
service-identity = "*"
whitenoise = "==4.0.*"
[dev-packages]
black = "==18.6b4"
factory-boy = "==2.11.*"
"flake8" = "==3.5.*"
"flake8-commas" = "==2.0.*"
"flake8-isort" = "==2.5.*"
ipdb = "==0.11.*"
oic = "==0.14.*"
pdbpp = "==0.9.*"
pytest = "==3.6.*"
pytest-django = "==3.3.*"
pytest-env = "==0.6.*"
pytest-splinter = "==1.9.*"
# Locked at lower version due to compatibility problems in pytest-splinter
splinter = "==0.8.*"
[requires]
python_version = "3.6"
[scripts]
docker-test = "pytest --create-db"
web = "daphne -b 0.0.0.0 -p 80 blapp.routing:application"