plzplz 0.0.3

A simple cross-platform task runner with helpful defaults
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Run tests
[tasks.test]
run = "pytest"
env = "uv"

# Build package
[tasks.build]
run = "uv build"

# Format source files
[tasks.format]
run = "ruff format ."
env = "uv"

# Run linter
[tasks.lint]
run = "ruff check ."
env = "uv"