From 7eb6301445f520bb2f94d4bfad89fd82f980685e Mon Sep 17 00:00:00 2001 From: Eric Pinzur Date: Tue, 11 Jun 2024 14:43:42 +0200 Subject: [PATCH] fix package includes --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6682a6f..5ef81fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,6 @@ description = "A tool for evaluating RAG pipelines" authors = ["Eric Pinzur "] license = "Apache 2.0" readme = "README.md" -packages = [{include = "ragulate/*"}] [tool.poetry.dependencies] python = ">=3.10,<3.13" @@ -27,6 +26,9 @@ langchain-community = "0.0.38" langchain-core = "0.1.52" langchain-openai = "0.1.3" +[tool.poetry.package] +include = ["ragulate"] + [build-system] requires = ["poetry-core", "setuptools>=42", "wheel", "pip"] build-backend = "poetry.core.masonry.api"