From f8e3bd7e2979c04bab67ebe8d0f96e77c2532fc1 Mon Sep 17 00:00:00 2001 From: Matheus Felipe Date: Sat, 11 May 2024 17:52:55 -0300 Subject: [PATCH] Build the package along with the data file for local use (#2118) * fix: build the package along with the data file for local use * chore: set the package directory explicitly rather than dynamically --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e826f24..98e47a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,3 +44,6 @@ version = { attr = "sherlock.__version__" } [tool.setuptools] package-dir = {"" = "sherlock"} + +[tool.setuptools.package-data] +"*" = ["*.json"]