23 lines
494 B
TOML
23 lines
494 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "benchmarks"
|
|
version = "0.0.7"
|
|
description = "Benchmarks for Hindsight memory system"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"python-fasthtml>=0.12.33",
|
|
"streamlit>=1.51.0",
|
|
"openai>=1.0.0",
|
|
"rich>=13.0.0",
|
|
"pydantic>=2.0.0",
|
|
"hindsight-api",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["benchmarks"]
|
|
|
|
[tool.uv.sources]
|
|
hindsight-api = { path = "../../hindsight-api" }
|