Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Latest commit

 

History

History
40 lines (24 loc) · 1.07 KB

File metadata and controls

40 lines (24 loc) · 1.07 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

  • 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