Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.2 KB

File metadata and controls

43 lines (26 loc) · 1.2 KB

Package

Test

  • Run pytest after installing all dependencies
    • After running the tests, you will find all reports in the ./reports directory. It'll contain coverage reports as HTML and XML in cobertura format.

Build and install in one go

python -m pip install ./src --user --force

Build

  • Create an empty ./lib folder folder if not exists
  • Go into the ./src folder

Build Source distribution package

python setup.py egg_info --egg-base ../lib sdist --dist-dir=../lib clean --all

Build Binary distribution

python setup.py egg_info --egg-base ../lib bdist_wheel --dist-dir=../lib clean --all

Install

  • Remain in ./pkg and install latest distribution

  • python -m pip install --find-links=file:../lib boschio.iotea --user --force

  • Or Goto directory ./lib and pick a version you would like to install

  • python -m pip install --user boschio_iotea-<version>-py3-none-any.whl --force

Test