|
|
@ -11,7 +11,7 @@ BUCKET = {{ cookiecutter.s3_bucket }} |
|
|
|
#################################################################################
|
|
|
|
#################################################################################
|
|
|
|
|
|
|
|
|
|
|
|
requirements: |
|
|
|
requirements: |
|
|
|
pip install -r requirements.txt
|
|
|
|
pip install -q -r requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
data: requirements |
|
|
|
data: requirements |
|
|
|
python src/make_dataset.py
|
|
|
|
python src/make_dataset.py
|
|
|
@ -20,7 +20,7 @@ clean: |
|
|
|
find . -name "*.pyc" -exec rm {} \;
|
|
|
|
find . -name "*.pyc" -exec rm {} \;
|
|
|
|
|
|
|
|
|
|
|
|
lint: |
|
|
|
lint: |
|
|
|
flake8 .
|
|
|
|
flake8 --exclude=lib/,bin/ .
|
|
|
|
|
|
|
|
|
|
|
|
sync_data_to_s3: |
|
|
|
sync_data_to_s3: |
|
|
|
s3cmd sync --recursive data/ s3://$(BUCKET)/data/
|
|
|
|
s3cmd sync --recursive data/ s3://$(BUCKET)/data/
|
|
|
|