OK_COLOR=\033[32;01m NO_COLOR=\033[0m all: lint unit export PYTHONPATH:=${PWD} version=`python -c 'import bc_jsonpath_ng; print(bc_jsonpath_ng.__version__)'` filename=bc_jsonpath_ng-`python -c 'import bc_jsonpath_ng; print(bc_jsonpath_ng.__version__)'`.tar.gz apidocs: @sphinx-apidoc -f --follow-links -H "API documentation" -o docs/source jsonpath_ng htmldocs: @rm -rf docs/_build $(MAKE) -C docs html install: @pip install -r requirements.txt @pip install -r requirements-dev.txt lint: @echo "$(OK_COLOR)==> Linting code ...$(NO_COLOR)" @flake8 --exclude=tests . test: clean @echo "$(OK_COLOR)==> Runnings tests ...$(NO_COLOR)" @py.test -s -v --capture sys --cov bc_jsonpath_ng --cov-report term-missing coverage: @coverage run --source bc_jsonpath_ng -m py.test @coverage report tag: @echo "$(OK_COLOR)==> Creating tag $(version) ...$(NO_COLOR)" @git tag -a "v$(version)" -m "Version $(version)" @echo "$(OK_COLOR)==> Pushing tag $(version) to origin ...$(NO_COLOR)" @git push origin "v$(version)" bump: @bumpversion --commit --tag --current-version $(version) patch bc_jsonpath_ng/__version__.py --allow-dirty bump-minor: @bumpversion --commit --tag --current-version $(version) minor bc_jsonpath_ng/__version__.py --allow-dirty history: @git changelog --tag $(version) clean: @echo "$(OK_COLOR)==> Cleaning up files that are already in .gitignore...$(NO_COLOR)" @for pattern in `cat .gitignore`; do find . -name "*/$$pattern" -delete; done publish: @echo "$(OK_COLOR)==> Releasing package ...$(NO_COLOR)" @python setup.py sdist bdist_wheel @twine upload dist/* @rm -fr build dist .egg pook.egg-info