Codebase list django-allauth / debian/0.33.0-1 Makefile
debian/0.33.0-1

Tree @debian/0.33.0-1 (Download .tar.gz)

Makefile @debian/0.33.0-1raw · history · blame

VIRTUALENV = $(shell pwd)/venv.tmp
PYTHON = $(VIRTUALENV)/bin/python
ISORT = isort $$(find $(PWD)/allauth -not -path '*/migrations/*' -type f -name '*.py' -not -name '__init__.py' -print)

po:
	( cd allauth ; $(PYTHON) ../manage.py makemessages -a -e html,txt,py )

mo:
	( cd allauth ; $(PYTHON) ../manage.py compilemessages )

isort-fix:
	$(ISORT)

.PHONY:						\
	po					\
	mo					\
	isort-fix