-
Notifications
You must be signed in to change notification settings - Fork 60
/
Makefile
33 lines (23 loc) · 1.18 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.PHONY: clean data lint requirements sync_data_to_s3 sync_data_from_s3
#################################################################################
# GLOBALS #
#################################################################################
BUCKET = [OPTIONAL] your-bucket-for-syncing-data (do not include 's3://')
#################################################################################
# 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:
s3cmd sync --recursive data/ s3://$(BUCKET)/data/
sync_data_from_s3:
s3cmd sync --recursive s3://$(BUCKET)/data/ data/
#################################################################################
# PROJECT RULES #
#################################################################################