https://github.com/GPflow/GPflow
Revision 8e2e5cf3172facd702895100bf0f347a6ca2bbf3 authored by st-- on 10 October 2019, 18:40:38 UTC, committed by Artem Artemev on 10 October 2019, 18:40:38 UTC
1 parent 99e8988
Raw File
Tip revision: 8e2e5cf3172facd702895100bf0f347a6ca2bbf3 authored by st-- on 10 October 2019, 18:40:38 UTC
Remove tf_graphs_and_sessions notebook (#1096)
Tip revision: 8e2e5cf
Makefile
.PHONY: help clean dev docs package test

help:
	@echo "The following make targets are available:"
	@echo "	dev-install		install all dependencies for dev environment and sets a egg link to the project sources"
	@echo "	install			install all dependencies and the project in the current environment"
	@echo "	package			build pip package"
	@echo "	test			run all tests in parallel"
	@echo "	clean			removes package, build files and egg info"

clean:
	rm -rf dist *.egg-info build

dev-install:
	pip install -e .

install:
	pip install .

package:
	python setup.py bdist

test:
	pytest -n auto tests/
back to top