-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
79 lines (58 loc) · 1.83 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
VIRTUAL_ENVIRONMENT := $(CURDIR)/.venv
LOCAL_PYTHON := $(VIRTUAL_ENVIRONMENT)/bin/python3
define HELP
Manage Snapchat Memory Fetcher. Usage:
make run - Run $(PROJECTNAME).
make install - Pull latest build and deploy to production.
make update - Update pip dependencies via Python Poetry.
make format - Format code with Python's `Black` library.
make lint - Check code formatting with flake8
make clean - Remove cached files and lock files.
endef
export HELP
.PHONY: run restart deploy update format lint clean help
requirements: .requirements.txt
env: ./.venv/bin/activate
.requirements.txt: requirements.txt
$(shell . .venv/bin/activate && pip install -r requirements.txt)
all help:
@echo "$$HELP"
.PHONY: run
run: env
$(LOCAL_PYTHON) main.py
.PHONY: install
install:
make clean
python3 -m venv $(VIRTUAL_ENVIRONMENT)
. $(VIRTUAL_ENVIRONMENT)/bin/activate
$(LOCAL_PYTHON) -m pip install --upgrade pip setuptools wheel
make requirements
.PHONY: update
update: env
$(LOCAL_PYTHON) -m pip install --upgrade pip setuptools wheel
poetry update
poetry export -f requirements.txt --output requirements.txt --without-hashes
.PHONY: format
format: env
isort --multi-line=3 .
black .
.PHONY: lint
lint:
flake8 . --count \
--select=E9,F63,F7,F82 \
--exclude .git,.github,__pycache__,.pytest_cache,.venv,logs,creds,.venv,docs,logs \
--show-source \
--statistics
.PHONY: clean
clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
find . -name 'poetry.lock' -delete
find . -name '*.log' -delete
find . -wholename 'logs/*.json' -delete
find . -wholename '.pytest_cache' -delete
find . -wholename '**/.pytest_cache' -delete
find . -wholename '*/logs/*.json' -delete
find . -wholename '.webassets-cache/*' -delete
find . -wholename '.urls/*json' -delete
find . -wholename '**/logs' -delete