-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
48 lines (43 loc) · 1.02 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]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
flake8 = "<6.0.0"
ipdb = "*"
black = "*"
pre-commit = "*"
wily = "*"
bandit = "*"
coverage = "*"
isort = "*"
selenium = "==4.*"
[packages]
django = "==3.1.*"
django-pipeline = "==2.0.*"
django-sekizai = "==2.0.*"
django-widget-tweaks = "==1.4.*"
django-registration = "==3.1.*"
django-extensions = "*"
django-anymail = {version = "==8.*", extras = ["mailjet"]}
django-recaptcha = "==2.0.*"
django-split-settings = "==1.0.*"
django-filter = "==2.4.*"
django-import-export = "==2.4.*"
djangorestframework = "==3.12.*"
markdown = "==3.3.*"
coreapi = "==2.3.*"
python-dateutil = "==2.8.*"
django-parler = "==2.2.*"
django-debug-toolbar = "==3.2.*"
psycopg2 = "==2.8.*"
[requires]
python_version = "3.10"
[scripts]
manage = "python manage.py"
server = "python manage.py runserver"
migrate = "python manage.py migrate"
test = "env DJANGO_ENV=test python manage.py test"
shell = "python manage.py shell_plus --print-sql"
[pipenv]
allow_prereleases = true