mirror of
https://github.com/run-llama/product-specs-comparison.git
synced 2026-07-01 21:24:01 -04:00
30 lines
646 B
TOML
30 lines
646 B
TOML
[build-system]
|
|
requires = ["uv_build>=0.9.10,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[project]
|
|
name = "product-specs-comparison"
|
|
version = "0.1.0"
|
|
description = "AI agent to produce meaningful product comparisons"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"aiofiles>=25.1.0",
|
|
"fastapi>=0.128.7",
|
|
"llama-cloud>=1.3.0",
|
|
"llama-index-llms-openai>=0.6.18",
|
|
"llama-index-workflows>=2.14.1",
|
|
"posthog>=7.8.5",
|
|
"python-multipart>=0.0.22",
|
|
"uvicorn>=0.40.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
webserver-run = "product_specs_comparison.api:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.15.1",
|
|
"ty>=0.0.16",
|
|
]
|