2024-09-26 11:00:33 -04:00
|
|
|
# This file is used to test `uv run <url>` in ../crates/uv/tests/run.rs
|
|
|
|
|
# /// script
|
|
|
|
|
# requires-python = ">=3.11"
|
|
|
|
|
# dependencies = [
|
2024-09-26 11:54:50 -04:00
|
|
|
# "rich==13.7.1",
|
2024-09-26 11:00:33 -04:00
|
|
|
# ]
|
|
|
|
|
# ///
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
import rich
|
|
|
|
|
|
|
|
|
|
who = sys.argv[1]
|
|
|
|
|
rich.print(f"Hello {who}, from uv!")
|