-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "lai"
version = "0.1.0"
description = "Local-first orchestration platform for adaptive model routing and large-model execution."
readme = "README.md"
requires-python = ">=3.11,<3.13"
license = { text = "Apache-2.0" }
authors = [
{ name = "LAI Maintainers" },
]
dependencies = [
"pydantic>=2.11,<3.0",
"pydantic-settings>=2.8,<3.0",
"PyYAML>=6.0.2,<7.0",
"rich>=14.0,<15.0",
"typer>=0.16,<1.0",
]
[project.optional-dependencies]
api = [
"fastapi>=0.116,<1.0",
"uvicorn[standard]>=0.35,<1.0",
]
dev = [
"httpx>=0.28,<1.0",
"pytest>=8.3,<9.0",
"ruff>=0.11,<1.0",
]
[project.scripts]
lai = "lai.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/lai"]