Follow the steps below to deploy the lumino package to PyPI.
First, create an API key on PyPI. This key will be used for authentication during deployment.
Next, create a .pypirc
file in your home directory (~/.pypirc
) with the following content. This file is needed to authenticate and upload your package to PyPI.
[distutils]
index-servers =
lumino
[lumino]
repository = https://upload.pypi.org/legacy/
username = __token__
password = <API_KEY>
Replace <API_KEY> with the actual API key you created in step 1.
Ensure the VERSION file is updated with the correct version before deploying.
Once everything is set, deploy to PyPI by running the following script:
./scripts/push-to-pypi.sh
Check the PyPI page to verify that the package has been successfully deployed.
You’re all set!