Skip to content

Commit

Permalink
Automate repetitive tasks with a Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Salem Harrache authored and SalemHarrache committed Jul 18, 2016
1 parent f9e8069 commit af73f88
Showing 1 changed file with 98 additions and 0 deletions.
98 changes: 98 additions & 0 deletions Makefile
@@ -0,0 +1,98 @@
SHELL := /bin/bash

# these files should pass flakes8
FLAKE8_WHITELIST=$(shell find . -name "*.py" \
! -path "./docs/*" ! -path "./.tox/*" \
! -path "./env/*" ! -path "./venv/*" \
! -path "**/compat.py")

open := $(shell { which xdg-open || which open; } 2>/dev/null)

.PHONY: clean-pyc clean-build docs clean


help: ## This help dialog.
@IFS=$$'\n' ; \
help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/:/'`); \
printf "%-15s %s\n" "target" "help" ; \
printf "%-15s %s\n" "------" "----" ; \
for help_line in $${help_lines[@]}; do \
IFS=$$':' ; \
help_split=($$help_line) ; \
help_command=`echo $${help_split[0]} | sed -e 's/^ *//' -e 's/ *$$//'` ; \
help_info=`echo $${help_split[2]} | sed -e 's/^ *//' -e 's/ *$$//'` ; \
printf '\033[36m'; \
printf "%-15s %s" $$help_command ; \
printf '\033[0m'; \
printf "%s\n" $$help_info; \
done


init: ## Install the project in development mode (using virtualenv is highly recommended)
pip install -e .
pip install -U setuptools pip
# Useful to build the documentation
pip install sphinx sphinx-readable-theme
# Useful for dev
pip install tox ipdb jedi pytest pytest-cov flake8 wheel bumpversion httpie

clean: clean-build clean-pyc clean-test ## Remove all build, test, coverage and Python artifacts

clean-build: ## Remove build artifacts
rm -fr build/
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +

clean-pyc: ## Remove Python file artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +

clean-test: ## Eemove test and coverage artifacts
rm -fr .tox/
rm -f .coverage
rm -fr htmlcov/

test: ## Run tests quickly with the default Python
py.test --verbose

testall: ## Run tests on every Python version with tox
tox

coverage: ## Check code coverage quickly with the default Python
coverage erase
tox $(TOX)
coverage combine
coverage report --include=* -m
coverage html
$(open) htmlcov/index.html

lint: ## Check style with flake8
flake8 $(FLAKE8_WHITELIST)

docs: ## Generate Sphinx HTML documentation, including API docs
$(MAKE) -C docs clean
$(MAKE) -C docs html
$(open) docs/_build/html/index.html

dist: clean ## Package
python setup.py sdist
python setup.py bdist_wheel
ls -l dist

release: clean ## Package and upload a release
python setup.py register
python setup.py sdist upload
python setup.py bdist_wheel upload

bumpversion: ## Bump the release version
@python scripts/bumpversion.py release

newversion: ## Set the new development version
@python scripts/bumpversion.py newversion $(filter-out $@,$(MAKECMDGOALS))

%:
@:

0 comments on commit af73f88

Please sign in to comment.