cookiecutter-data-science/{{ cookiecutter.repo_name }}/Makefile

8 lines
99 B
Makefile
Raw Normal View History

2015-10-30 12:09:43 -07:00
.PHONY: clean data
data:
python src/make_dataset.py
clean:
find . -name "*.pyc" -exec rm {} \;