generated from ac2152021/2021-AC215-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·28 lines (20 loc) · 1.04 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
.PHONY: clean lint data
#################################################################################
# GLOBALS #
#################################################################################
PROJECT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
#################################################################################
# COMMANDS #
#################################################################################
## Delete all compiled Python files
clean:
find . -type f -name "*.py[co]" -delete
find . -type d -name "__pycache__" -delete
## Lint using black and flake8
lint:
black src && flake8 src
data:
touch data/raw/example.txt
#################################################################################
# PROJECT RULES #
#################################################################################