Python
Install package in editable mode
From parent directory of package:
$ pip install -e <your package name>Updating and Publishing Packages to PyPi:
See Packaging Python Projects (python.org)
Your python envrionment will require the following pacakges:
python=3 setuptools twineUpdate the semantic version number in the package's
setup.py.From the same directory as
setup.pybuild the new version:$ python setup.py bdist_wheel --universalUpload the new version to PyPi. (You'll be prompted to enter your username/password):
$ twine upload dist/*
Last updated