Use uvx to run development tools without adding them to your project dependencies. uvx runs each tool in an isolated, cached environment, keeping your pyproject.toml clean and focused on actual dependencies.
Here's an example:
# uvx (alias for uv run tool)
# Format and lint code without modifying pyproject.toml
uvx black .
uvx isort .
