Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 541 Bytes

DEVELOPMENT.rst

File metadata and controls

24 lines (16 loc) · 541 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>
  1. Bump the version number in auth0/__init__.py
  2. Run the following command:
python setup.py sdist bdist upload