mirror of
https://github.com/james-m-jordan/morphik-core.git
synced 2025-05-09 19:32:38 +00:00
18 lines
379 B
TOML
18 lines
379 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "databridge-client"
|
|
version = "0.1.0"
|
|
description = "Python client for DataBridge RAG service"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"httpx>=0.24.0",
|
|
"pyjwt>=2.0.0"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest", "pytest-asyncio", "black", "isort"]
|