aboutsummaryrefslogtreecommitdiffstats
path: root/packages/multillm-cli/pyproject.toml
blob: c4872d9c3221d097199570ab7359f1706326deed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[project]
name = "multillm-cli"
version = "0.1.0"
description = "CLI tool for multillm"
requires-python = ">=3.10"
dependencies = [
    "multillm",
]

[project.scripts]
multillm = "multillm_cli.main:main"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/multillm_cli"]

[tool.uv.sources]
multillm = { workspace = true }