19 lines
427 B
TOML
19 lines
427 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "hindsight-embed"
|
|
version = "0.1.0"
|
|
description = "Hindsight embedded CLI - local memory operations without a server"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
hindsight-embed = "hindsight_embed.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["hindsight_embed"]
|