morphik-core/sdks/python/pyproject.toml
Adityavardhan Agrawal 6da9cc8495 SDK publishable
2024-11-17 18:17:42 -05:00

26 lines
481 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "databridge-client"
version = "0.1.0"
authors = [
{ name = "Your Name", email = "your.email@example.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",
]