2024-11-16 01:48:15 -05:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
2025-04-09 18:46:00 -07:00
|
|
|
name = "morphik"
|
2025-04-30 19:42:43 -07:00
|
|
|
version = "0.1.5"
|
2024-11-17 15:37:46 -05:00
|
|
|
authors = [
|
2025-04-09 18:46:00 -07:00
|
|
|
{ name = "Morphik", email = "founders@morphik.ai" },
|
2024-11-17 15:37:46 -05:00
|
|
|
]
|
2025-04-09 18:46:00 -07:00
|
|
|
description = "Morphik Python Client"
|
2024-11-16 01:48:15 -05:00
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.8"
|
|
|
|
dependencies = [
|
|
|
|
"httpx>=0.24.0",
|
2024-11-17 15:37:46 -05:00
|
|
|
"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"
|
2024-11-16 01:48:15 -05:00
|
|
|
]
|
|
|
|
|
2024-11-17 15:37:46 -05:00
|
|
|
[tool.hatch.build.targets.wheel]
|
2025-04-09 18:46:00 -07:00
|
|
|
packages = ["morphik"]
|
2024-11-17 15:37:46 -05:00
|
|
|
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
|
|
include = [
|
2025-04-09 18:46:00 -07:00
|
|
|
"/morphik",
|
2024-11-17 18:17:33 -05:00
|
|
|
]
|