From 32baec4ece07d46f8b69802d11caa14ec1cf86c6 Mon Sep 17 00:00:00 2001
From: "Thomas S." <thomas@probabl.ai>
Date: Mon, 7 Oct 2024 15:58:07 +0200
Subject: [PATCH] fix(Makefile): Fix missing LICENSE and README.md in
 `install-skore` (#447)

---
 Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/Makefile b/Makefile
index d71f17f14..ffbc47012 100644
--- a/Makefile
+++ b/Makefile
@@ -6,12 +6,18 @@ pip-compile:
 	python -m piptools compile --extra=tools --output-file=skore/requirements-tools.txt skore/pyproject.toml
 
 install-skore:
+	cp LICENSE skore/LICENSE
+	cp README.md skore/README.md
+
 	python -m pip install \
 		-e skore/ \
 		-r skore/requirements.txt \
 		-r skore/requirements-test.txt \
 		-r skore/requirements-tools.txt
 
+	rm skore/LICENSE
+	rm skore/README.md
+
 	pre-commit install
 
 build-skore-ui: