-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathPipfile
73 lines (69 loc) · 1.55 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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
Django = ">=3"
{% if cookiecutter.use_compressor == 'y' -%}
django-compressor = "*"
{% endif -%}
django-allauth = "*"
django-angular = ">=2.3"
django-filer = "==2.0.2"
django-ipware = "*"
django-sass-processor = "*"
django-select2 = "*"
django-filter = "*"
{% if cookiecutter.use_i18n == 'y' -%}
django-parler = "*"
django-parler-rest = "*"
{% endif -%}
{% if cookiecutter.dockerize != "n" -%}
psycopg2-binary = "<2.8"
django-redis-cache = "*"
django-redis-sessions = "*"
schedule = "*"
uWSGI = "*"
{% endif -%}
djangorestframework = "*"
django-rest-auth = "*"
django-polymorphic = ">=2.1"
django-admin-sortable2 = "*"
django-fsm = "*"
django-fsm-admin = "*"
django-phonenumber-field = "*"
django-post_office = "*"
phonenumbers = "*"
django-cms = ">=3.7.2"
djangocms-bootstrap = "*"
djangocms-cascade = ">=1.3.1"
djangocms-text-ckeditor = ">=3.9.1"
libsass = "*"
django-shop = ">=1.2.1,<2"
{% if cookiecutter.use_elasticsearch == 'y' -%}
django-elasticsearch-dsl = "*"
elasticsearch-dsl = ">=7"
{% endif -%}
{% if cookiecutter.use_stripe == 'y' -%}
djangoshop-stripe = ">=1.2"
stripe = "<2"
{% endif -%}
{% if cookiecutter.use_paypal == 'y' -%}
djangoshop-paypal = ">=1.2"
paypalrestsdk = "<2"
{% endif -%}
{% if cookiecutter.use_sendcloud == 'y' -%}
djangoshop-sendcloud = ">=1.2"
{%- endif %}
[dev-packages]
tox = "*"
pytest = "*"
pytest-django = "*"
beautifulsoup4 = "*"
lxml = "*"
factory-boy = "*"
pytest-factoryboy = "*"
[requires]
python_version = "3.7"
[pipenv]
allow_prereleases = true