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

37 lines
1.6 KiB
Plaintext
Raw Normal View History

-r ./base.txt
Werkzeug==0.14.1 # pyup: < 0.15 # https://github.com/pallets/werkzeug
2019-07-31 14:00:32 +03:00
ipdb==0.12.2 # https://github.com/gotcha/ipdb
2019-10-26 14:00:30 +03:00
Sphinx==2.2.1 # 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.4 # https://github.com/psycopg/psycopg2
{%- endif %}
# Testing
# ------------------------------------------------------------------------------
2019-10-17 14:00:29 +03:00
mypy==0.740 # https://github.com/python/mypy
2019-10-25 14:00:37 +03:00
pytest==5.2.2 # https://github.com/pytest-dev/pytest
pytest-sugar==0.9.2 # https://github.com/Frozenball/pytest-sugar
# Code quality
# ------------------------------------------------------------------------------
2019-07-09 14:00:29 +03:00
flake8==3.7.8 # https://github.com/PyCQA/flake8
2019-07-30 14:00:36 +03:00
coverage==4.5.4 # https://github.com/nedbat/coveragepy
2019-10-29 14:00:32 +03:00
black==19.10b0 # https://github.com/ambv/black
pylint-django==2.0.12 # 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 %}
pre-commit==1.20.0 # https://github.com/pre-commit/pre-commit
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.2.5 # https://github.com/django-extensions/django-extensions
django-coverage-plugin==1.6.0 # https://github.com/nedbat/django_coverage_plugin
pytest-django==3.7.0 # https://github.com/pytest-dev/pytest-django