forked from microsoft/semantic-kernel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
74 lines (63 loc) · 1.89 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
SHELL = /bin/bash
.PHONY: help install clean build
.SILENT:
all: install
ifeq ($(PYTHON_VERSION),)
PYTHON_VERSION="3.10"
endif
.ONESHELL:
help:
echo -e "\033[1mUSAGE:\033[0m"
echo " make [target]"
echo ""
echo -e "\033[1mTARGETS:\033[0m"
echo " help - show this help message"
echo " install - install uv, python, Semantic Kernel and all dependencies"
echo " This is the default and will use Python 3.10."
echo " install-uv - install uv"
echo " install-python - install python distributions"
echo " install-sk - install Semantic Kernel and all dependencies"
echo " install-pre-commit - install pre-commit hooks"
echo " clean - remove the virtualenvs"
echo " build - build the project"
echo ""
echo -e "\033[1mVARIABLES:\033[0m"
echo " PYTHON_VERSION - Python version to use. Default is 3.10"
echo " By default, 3.10, 3.11 and 3.12 are installed as well."
install:
make install-uv
make install-python
make install-sk
make install-pre-commit
UV_VERSION = $(shell uv --version 2> /dev/null)
install-uv:
# Check if uv is installed
ifdef UV_VERSION
echo "uv found $(UV_VERSION)"
echo "running uv update"
uv self update
else
echo "uv could not be found"
echo "Installing uv"
curl -LsSf https://astral.sh/uv/install.sh | sh
endif
.ONESHELL:
install-python:
echo "Installing python 3.10, 3.11, 3.12"
uv python install 3.10 3.11 3.12
.ONESHELL:
install-pre-commit:
echo "Installing pre-commit hooks"
uv run pre-commit install -c python/.pre-commit-config.yaml
.ONESHELL:
install-sk:
echo "Creating and activating venv for python $(PYTHON_VERSION)"
uv venv --python $(PYTHON_VERSION)
echo "Installing Semantic Kernel and all dependencies"
uv sync --all-extras --dev
.ONESHELL:
clean:
# Remove the virtualenv
rm -rf .venv
build:
uvx --from build pyproject-build --installer uv