From cbfdf1c8a881fa52fb1c50b171910ff9dea64e10 Mon Sep 17 00:00:00 2001 From: phact Date: Wed, 17 Dec 2025 11:35:42 -0500 Subject: [PATCH] pyproject --- sdks/python/pyproject.toml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sdks/python/pyproject.toml b/sdks/python/pyproject.toml index b5134aae..26c93f74 100644 --- a/sdks/python/pyproject.toml +++ b/sdks/python/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" [project] name = "openrag-sdk" @@ -16,7 +16,6 @@ keywords = ["openrag", "rag", "retrieval", "ai", "sdk", "api"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -42,8 +41,8 @@ Documentation = "https://docs.openr.ag/sdk/python" Repository = "https://github.com/langflow-ai/openrag" Issues = "https://github.com/langflow-ai/openrag/issues" -[tool.hatch.build.targets.wheel] -packages = ["openrag_sdk"] +[tool.setuptools.packages.find] +include = ["openrag_sdk*"] [tool.pytest.ini_options] asyncio_mode = "auto"