-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
33 lines (26 loc) · 1013 Bytes
/
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
# Makefile
#################################################################################
# GLOBALS #
#################################################################################
SHELL:=/bin/bash
python=python3.10
BIN=venv/bin/
all: requirements
#################################################################################
# COMMANDS #
#################################################################################
# Create a virtual environment.
venv:
echo ">>> Create environment..."
$(python) -m venv venv
echo ">>> Environment successfully created!"
# Delete the virtual environment.
clean:
rm -rf venv
# Install Python dependencies.
requirements: venv
echo ">>> Installing requirements..."
$(BIN)python -m pip install --upgrade pip wheel
$(BIN)python -m pip install -r requirements.txt
# Silencing commands
.SILENT: venv requirements clean