-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmise.toml
More file actions
35 lines (27 loc) · 713 Bytes
/
Copy pathmise.toml
File metadata and controls
35 lines (27 loc) · 713 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
[settings]
experimental = true
[tools]
python = "latest"
rust = "latest"
uv = "latest"
[tasks.sync]
description = "Sync all dependencies including extras"
run = "uv sync --all-extras --dev"
[tasks.build]
description = "Build rust extension"
run = "uv run maturin develop -m ultrasync_index/Cargo.toml"
[tasks.dev]
description = "Sync deps and build rust extension"
depends = ["sync", "build"]
[tasks.lint]
description = "Run ruff linter"
run = "ruff check src/ultrasync"
[tasks.fmt]
description = "Format code with ruff"
run = "ruff format src/ultrasync"
[tasks.test]
description = "Run pytest"
run = "uv run pytest"
[tasks.voyager]
description = "Launch the Voyager TUI"
run = "uv run ultrasync voyager"