cookiecutter-django/{{cookiecutter.project_slug}}/requirements/local.txt

36 lines
1.5 KiB
Plaintext
Raw Normal View History

-r ./base.txt
Werkzeug==0.14.1 # pyup: < 0.15 # https://github.com/pallets/werkzeug
2019-03-21 19:01:08 +03:00
ipdb==0.12 # https://github.com/gotcha/ipdb
2019-06-20 14:00:29 +03:00
Sphinx==2.1.2 # https://github.com/sphinx-doc/sphinx
{%- if cookiecutter.use_docker == 'y' %}
psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2
{%- else %}
psycopg2-binary==2.8.3 # https://github.com/psycopg/psycopg2
{%- endif %}
# Testing
# ------------------------------------------------------------------------------
2019-06-25 14:00:34 +03:00
mypy==0.711 # https://github.com/python/mypy
2019-06-12 14:00:30 +03:00
pytest==4.6.3 # https://github.com/pytest-dev/pytest
pytest-sugar==0.9.2 # https://github.com/Frozenball/pytest-sugar
# Code quality
# ------------------------------------------------------------------------------
2019-05-18 14:00:31 +03:00
flake8==3.7.7 # https://github.com/PyCQA/flake8
2019-03-21 19:01:21 +03:00
coverage==4.5.3 # https://github.com/nedbat/coveragepy
2019-03-21 19:01:24 +03:00
black==19.3b0 # https://github.com/ambv/black
pylint-django==2.0.9 # https://github.com/PyCQA/pylint-django
{%- if cookiecutter.use_celery == 'y' %}
2019-03-27 00:16:40 +03:00
pylint-celery==0.3 # https://github.com/PyCQA/pylint-celery
{%- endif %}
2015-07-14 06:33:49 +03:00
# Django
# ------------------------------------------------------------------------------
factory-boy==2.12.0 # https://github.com/FactoryBoy/factory_boy
2016-02-24 23:22:22 +03:00
django-debug-toolbar==2.0 # https://github.com/jazzband/django-debug-toolbar
django-extensions==2.1.9 # https://github.com/django-extensions/django-extensions
django-coverage-plugin==1.6.0 # https://github.com/nedbat/django_coverage_plugin
pytest-django==3.5.0 # https://github.com/pytest-dev/pytest-django