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

34 lines
1.1 KiB
Makefile
Raw Normal View History

2015-11-02 06:02:49 -08:00
.PHONY: clean data lint requirements sync_data_to_s3 sync_data_from_s3
#################################################################################
# GLOBALS #
#################################################################################
BUCKET = {{ cookiecutter.s3_bucket }}
#################################################################################
# COMMANDS #
#################################################################################
2015-10-30 12:09:43 -07:00
2015-10-30 13:05:08 -07:00
requirements:
pip install -q -r requirements.txt
2015-10-30 13:05:08 -07:00
data: requirements
2016-05-02 19:35:49 -07:00
python src/data/make_dataset.py
2015-10-30 12:09:43 -07:00
clean:
find . -name "*.pyc" -exec rm {} \;
2015-11-02 06:02:49 -08:00
lint:
flake8 --exclude=lib/,bin/ .
2015-11-02 06:02:49 -08:00
sync_data_to_s3:
aws s3 sync data/ s3://$(BUCKET)/data/
sync_data_from_s3:
aws s3 sync s3://$(BUCKET)/data/ data/
2015-11-02 06:02:49 -08:00
#################################################################################
# PROJECT RULES #
#################################################################################