Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.34 KB

publishinfo.md

File metadata and controls

37 lines (27 loc) · 1.34 KB

Powershell kernel release

Bump the version in the following locations:

Update Changelog

  • Add descriptive content to describe what's new in latest version

Create GitHub release

Configure .pypirc File

Docs for how to setup .pypirc file can be found here: https://docs.python.org/3.6/distutils/packageindex.html#the-pypirc-file. Note: it should look something like the following, and live in th $HOME directory. For security reasons, omit the password field, like so (you'll be prompted later for it when running sdist upload, don't worry!):

index-servers =
  pypi

[pypi]
repository: https://pypi.python.org/pypi
username: <your_username_here>

Install setup tools dependencies

pip install -U setuptools

Edit setup.py

  • Get latest in branch

  • In setup.py, add the following under url:

    download_url = ,

example: https://github.com/vors/jupyter-powershell/archive/0.1.0.tar.gz

Upload bits to pypi

python setup.py sdist upload -r pypi