Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 827 Bytes

DEVELOPMENT.rst

File metadata and controls

34 lines (22 loc) · 827 Bytes

Instructions to upload auth0-python to PyPI

  1. 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>
  2. Bump the version number in auth0/__init__.py.
  3. Make sure you add changes to the changelog.
  4. 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