From 2df9e2e2d6c533d072c91e9deab71d52c98c93ad Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Tue, 8 Nov 2022 15:06:59 +0100 Subject: [PATCH] Fix the location of LICENSE file LICENSE is included automatically by poetry and it's installed into .dist-info directory. This manual include caused the file to be installed also into lib/python3.11/site-packages next to the main databooks package. --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 48f3b832..7e46025f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,9 +8,6 @@ readme = "README.md" homepage = "https://datarootsio.github.io/databooks/" repository = "https://github.com/datarootsio/databooks/" keywords = ["jupyter-notebooks", "cli"] -include = [ - "LICENSE", -] [tool.poetry.scripts] databooks = "databooks.cli:app"