# Example .pypirc configuration for PyPI uploads
# Save this as ~/.pypirc (Linux/Mac) or %USERPROFILE%\.pypirc (Windows)

[distutils]
index-servers =
    pypi
    testpypi

[pypi]
username = __token__
password = pypi-your-actual-token-here  # pragma: allowlist secret

[testpypi]
repository = https://test.pypi.org/legacy/
username = __token__
password = pypi-your-test-token-here  # pragma: allowlist secret

# Replace 'pypi-your-actual-token-here' with your real PyPI API token
# Replace 'pypi-your-test-token-here' with your TestPyPI token
# Get your tokens from:
#   PyPI: https://pypi.org/manage/account/token/
#   TestPyPI: https://test.pypi.org/manage/account/token/

# Note: Our upload script reads tokens from .pypirc automatically
# No need to manually enter tokens when using this configuration!

# Alternative: Set environment variables (highest priority)
# export PYPI_API_TOKEN="pypi-your-token-here"
# export UV_PUBLISH_TOKEN="pypi-your-token-here"
