uv and PEP 723 for Easy Deployment
By adding metadata comments at the top of the script like this:
#!/usr/bin/env -S uv run --script # /// script # requires-python = ">=3.13" # dependencies = [ # "httpx>=0.28.1", # ] # ///
uv(1) will automatically handle downloading dependency modules at runtime etc., obviating the need for a requirements.txt file. Fairly neat