[build-system] requires = ["hatchling>=1.21"] build-backend = "hatchling.build" [project] name = "shoal-client" version = "0.5.0" description = "Official Python SDK for Shoal, an object-storage-native vector + full-text search database." readme = "README.md" license = { text = "Apache-2.0" } requires-python = ">=3.9" authors = [{ name = "The Shoal Project Contributors" }] keywords = ["vector-search", "full-text-search", "search", "rag", "embeddings", "shoal"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Database", "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ "httpx>=0.26,<1.0", "pydantic>=2.5,<3.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.23", "mypy>=1.8", "ruff>=0.4", ] [project.urls] Homepage = "https://github.com/shoal-db/shoal" Documentation = "https://github.com/shoal-db/shoal/tree/main/docs" Repository = "https://github.com/shoal-db/shoal" [tool.hatch.build.targets.wheel] packages = ["shoal"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] [tool.ruff] line-length = 100 target-version = "py39" [tool.mypy] python_version = "3.9" strict = true ignore_missing_imports = true