morphik-core/sdks/python/pyproject.toml
2024-11-20 16:55:54 -05:00

26 lines
489 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "databridge-client"
version = "0.1.2"
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",
]
[tool.hatch.build.targets.wheel]
packages = ["databridge"]
[tool.hatch.build.targets.sdist]
include = [
"/databridge",
]