-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPipfile
76 lines (72 loc) · 1.77 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
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
appdirs = "==1.4.3"
asgiref = "==3.2.10"
certifi = "==2020.6.20"
chardet = "==3.0.4"
colorama = "==0.4.3"
contextlib2 = "==0.6.0"
defusedxml = "==0.6.0"
diff-match-patch = "==20200713"
distlib = "==0.3.0"
distro = "==1.4.0"
dj-database-url = "==0.5.0"
django-cleanup = "==5.1.0"
django-crispy-forms = "==1.9.2"
django-extensions = "==3.0.9"
django-heroku = "==0.3.1"
django-import-export = "==2.3.0"
django-otp = "==1.0.0"
django-otp-twilio = "==1.0.0"
django-storages = "==1.10.1"
dropbox = "==10.4.1"
et-xmlfile = "==1.0.1"
gunicorn = "==20.0.4"
html5lib = "==1.0.1"
idna = "==2.10"
ipaddr = "==2.2.0"
jdcal = "==1.4.1"
lockfile = "==0.12.2"
msgpack = "==0.6.2"
odfpy = "==1.4.1"
openpyxl = "==3.0.5"
pep517 = "==0.8.2"
progress = "==1.5"
psycopg2 = "==2.8.6"
pyparsing = "==2.4.6"
python-dateutil = "==2.8.1"
pytoml = "==0.1.21"
pytz = "==2020.1"
requests = "==2.24.0"
retrying = "==1.3.3"
six = "==1.15.0"
sqlparse = "==0.3.1"
tablib = "==2.0.0"
text-unidecode = "==1.3"
urllib3 = "==1.25.10"
webencodings = "==0.5.1"
whitenoise = "==5.2.0"
xlrd = "==1.2.0"
xlwt = "==1.3.0"
CacheControl = "==0.12.6"
Django = "==3.1.13"
Faker = "==4.1.4"
MarkupPy = "==1.14"
Pillow = "==9.0.1"
PyYAML = "==5.3.1"
tqdm = "*"
[requires]
python_version = "3.8"
[scripts]
help="bash -c 'tail Pipfile -n 13 | head'"
cmd="python src/manage.py"
collect = "python src/manage.py collectstatic --noinput"
make = "python src/manage.py makemigrations"
shell = "python src/manage.py shell"
migrate = "python src/manage.py migrate"
server = "bash -c 'printf \"$(tput bold)$(tput setaf 2)Starting development server also on http://$(hostname -I)\b:8000/$(tput sgr0)\n\";python src/manage.py runserver 0.0.0.0:8000'"
[pipenv]
allow_prereleases = true