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
|
# Django
# ------------------------------------------------------------------------------
django-environ==0.12.0 # https://github.com/joke2k/django-environ
django-redis==5.4.0 # https://github.com/niwinz/django-redis
django-extensions==3.2.3
structlog>=21.4.0
colorama>=0.4.3
psycopg[binary]==3.2.6 # https://github.com/psycopg/psycopg
# Testing
# ------------------------------------------------------------------------------
pytest==8.3.5 # https://github.com/pytest-dev/pytest
pytest-sugar==1.0.0 # https://github.com/Frozenball/pytest-sugar
pytest-cov==6.1.1
# Code quality
# ------------------------------------------------------------------------------
-r coverage.txt
pylint-django==2.6.1 # https://github.com/PyCQA/pylint-django
pylint-celery==0.3 # https://github.com/PyCQA/pylint-celery
# Django
# ------------------------------------------------------------------------------
factory-boy==3.3.3 # https://github.com/FactoryBoy/factory_boy
django-coverage-plugin==3.1.0 # https://github.com/nedbat/django_coverage_plugin
pytest-django==4.11.1 # https://github.com/pytest-dev/pytest-django
# Setup tools
# ------------------------------------------------------------------------------
setuptools>=41.0.1
|