Create a
.pypirc
file in your home directory with the following contents (replace<username>
and<password>
with your PyPI credentials):[distutils] index-servers = pypi [pypi] repository: https://pypi.python.org/pypi username=<username> password=<password>
Bump the version number in
auth0/__init__.py
.Make sure you add changes to the changelog.
Run the following command:
python3 setup.py sdist bdist_wheel --universal twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
or do it using docker:
sh publish.sh