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"