uv-publish
Publish Python packages to PyPI
TLDR
Publish to PyPI
$ uv publish
Publish to test PyPI$ uv publish --repository testpypi
Publish specific files$ uv publish dist/*
SYNOPSIS
uv publish [options] [files...]
DESCRIPTION
uv publish uploads Python packages to PyPI or other repositories. Publishes wheel and source distributions. Supports authentication via token or username/password.
PARAMETERS
--repository name
Target repository.--repository-url url
Custom repository URL.--token token
Authentication token.--username user
Repository username.--password pass
Repository password.

