morphik-core/sdks/python/pyproject.toml
2025-03-28 16:01:28 -07:00

29 lines
558 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "databridge-client"
version = "0.2.6"
authors = [
{ name = "DataBridge", email = "databridgesuperuser@gmail.com" },
]
description = "DataBridge Python Client"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"httpx>=0.24.0",
"pyjwt>=2.0.0",
"pydantic==2.10.3",
"requests>=2.32.3",
"pillow==10.4.0"
]
[tool.hatch.build.targets.wheel]
packages = ["databridge"]
[tool.hatch.build.targets.sdist]
include = [
"/databridge",
]