-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 757 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 757 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
[project]
name = "turbollm"
version = "0.1.2"
description = "Ollama-like CLI for local LLM serving on Apple Silicon"
requires-python = ">=3.11"
dependencies = [
"click>=8.0",
"huggingface-hub>=0.20",
"rich>=13.0",
]
[project.optional-dependencies]
# macOS sidecar (TurboHUD + turbo-acquirer) + Raycast surface. No hard Python
# deps — the plugin shells out to `swift` / `ray`. This extra is a documented
# opt-in marker (`uv tool install "turbollm[mac]"`); the commands themselves
# auto-register only on a Mac with the swift toolchain and the in-tree tools/.
mac = []
[project.scripts]
turbo = "turbollm.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.3",
]