morphik-core/sdks/python/pyproject.toml

29 lines
526 B
TOML
Raw Normal View History

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "morphik"
version = "0.1.5"
authors = [
{ name = "Morphik", email = "founders@morphik.ai" },
]
description = "Morphik Python Client"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"httpx>=0.24.0",
"pyjwt>=2.0.0",
2024-12-17 21:40:38 -05:00
"pydantic==2.10.3",
2024-12-26 08:52:25 -05:00
"requests>=2.32.3",
2025-03-28 16:01:28 -07:00
"pillow==10.4.0"
]
[tool.hatch.build.targets.wheel]
packages = ["morphik"]
[tool.hatch.build.targets.sdist]
include = [
"/morphik",
2024-11-17 18:17:33 -05:00
]