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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
.PHONY: clean
clean: clean-build clean-pyc
.PHONY: clean-build
clean-build:
rm -fr build/
rm -fr dist/
rm -fr *.egg-info
.PHONY: clean-pyc
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
.PHONY: lint
lint:
tox -e lint
.PHONY: lint-roll
lint-roll:
isort rest_framework_simplejwt tests
$(MAKE) lint
.PHONY: tests
test:
pytest tests
.PHONY: test-all
test-all:
tox
.PHONY: build-docs
build-docs:
sphinx-apidoc -o docs/ . \
setup.py \
*confest* \
tests/* \
rest_framework_simplejwt/token_blacklist/* \
rest_framework_simplejwt/backends.py \
rest_framework_simplejwt/exceptions.py \
rest_framework_simplejwt/settings.py \
rest_framework_simplejwt/state.py
$(MAKE) -C docs clean
$(MAKE) -C docs html
$(MAKE) -C docs doctest
.PHONY: docs
docs: build-docs
open docs/_build/html/index.html
.PHONY: linux-docs
linux-docs: build-docs
xdg-open docs/_build/html/index.html
.PHONY: pushversion
pushversion:
git push upstream && git push upstream --tags
.PHONY: publish
publish:
python setup.py sdist bdist_wheel
twine upload dist/*
.PHONY: dist
dist: clean
python setup.py sdist bdist_wheel
ls -l dist
|