1 2 3 4 5 6 7 8 9 10 11 12 13 14# This file is used to test `uv run <url>` in ../crates/uv/tests/run.rs # /// script # requires-python = ">=3.11" # dependencies = [ # "rich==13.7.1", # ] # /// import sys import rich who = sys.argv[1] rich.print(f"Hello {who}, from uv!")