mirror of
https://github.com/james-m-jordan/morphik-core.git
synced 2025-05-09 19:32:38 +00:00
29 lines
526 B
TOML
29 lines
526 B
TOML
[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",
|
|
"pydantic==2.10.3",
|
|
"requests>=2.32.3",
|
|
"pillow==10.4.0"
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["morphik"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/morphik",
|
|
]
|