From 47c1a100123f9ec3331a3425e6fa92470a0c1f34 Mon Sep 17 00:00:00 2001 From: carlos-adir Date: Sun, 25 Feb 2024 11:26:22 +0100 Subject: [PATCH] fix: include all json schemas in pyproject.toml --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 95847e3..adf89ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,10 @@ description = "Analysis of beams cross-section using the boundary element method authors = ["Carlos Adir "] readme = "README.md" packages = [{ include = "compmec/section", from = "src" }] -include = ["schema/material.json"] +include = ["schema/*.json"] + +[tool.setuptools.packages.find] +include = ["src/compmec/section/schema/*.json"] [tool.poetry.dependencies] numpy = "^1.0.0"