mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 16:56:24 +02:00
26 lines
563 B
TOML
26 lines
563 B
TOML
[project]
|
|
name = "model-choice-newsletter-code-snippets"
|
|
version = "0.1.0"
|
|
description = "Benchmarking model alias routing with Plano."
|
|
authors = [{name = "Your Name", email = "your@email.com"}]
|
|
license = {text = "Apache 2.0"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pydantic>=2.0",
|
|
"openai>=1.0",
|
|
"pyyaml>=6.0",
|
|
"planoai>=0.4.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["."]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|