You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
1.2 KiB

.PHONY: clean data lint requirements sync_data_to_s3 sync_data_from_s3
#################################################################################
# GLOBALS #
#################################################################################
BUCKET = {{ cookiecutter.s3_bucket }}
#################################################################################
# COMMANDS #
#################################################################################
requirements:
pip install -q -r requirements.txt
data: requirements
python src/data/make_dataset.py
clean:
find . -name "*.pyc" -exec rm {} \;
lint:
flake8 --exclude=lib/,bin/ .
sync_data_to_s3:
aws s3 sync --recursive data/ s3://$(BUCKET)/data/
sync_data_from_s3:
aws s3 sync --recursive s3://$(BUCKET)/data/ data/
#################################################################################
# PROJECT RULES #
#################################################################################