cookiecutter-django/{{cookiecutter.project_slug}}/utility/requirements.apt
Eman Calso 3717cbb6aa Install python3-dev when not using python2 (#551)
* Install python3-dev if use_python2==n

By default, ubuntu-based distros would install python2-dev if you
install python-dev.
python3-dev should be installed explicitly if we're not using python2.

* Add Emanuel Calso to contributors
2016-05-23 14:46:34 -07:00

28 lines
488 B
Plaintext

##basic build dependencies of various Django apps for Ubuntu 14.04
#build-essential metapackage install: make, gcc, g++,
build-essential
#required to translate
gettext
{% if cookiecutter.use_python2 == 'n' -%}
python3-dev
{% else %}
python-dev
{%- endif %}
##shared dependencies of:
##Pillow, pylibmc
zlib1g-dev
##Postgresql and psycopg2 dependencies
libpq-dev
##Pillow dependencies
libtiff4-dev
libjpeg8-dev
libfreetype6-dev
liblcms1-dev
libwebp-dev
##django-extensions
graphviz-dev