Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 569 Bytes

DEVELOPING.md

File metadata and controls

42 lines (28 loc) · 569 Bytes

Developing

Setting up development environment

Start by forking the istSOS3 repository.

Preparing for publication

Requirements

sudo apt-get install python3-venv
sudo pip3 install -U setuptools

Create distribution package

python3 setup.py sdist

Upload to pypi

twine upload dist/*

Test

python3 -m venv tutorial
source tutorial/bin/activate
pip install --upgrade pip
pip install dist/istsos-3.0.0b1.tar.gz

Exit from venv

deactivate