SHELL := /bin/bash

# Install dependencies.
init:
	pip install --upgrade pip
	pip install numpy==1.11.0
	pip install -r requirements.txt

# Remove *.pyc files
clean:
	find src -name '*.pyc' -delete
