Metadata-Version: 2.1
Name: pikoder-ppm-encoder
Version: 0.0.1
Summary: Small library to use the pikoder ppm encoder
Home-page: https://github.com/vw-wob-it-edu-ngitl/pikoder_ppm_encoder
Author: Torsten Wylegala
Author-email: mail@twyleg.de
License: GPL 3.0
Keywords: pikoder ppm encoder
Platform: UNKNOWN
License-File: LICENSE

# pikoder PPM Encoder

Small library to interact with the pikoder USB2PPM and UART2PPM interfaces.

## Setup environment

To setup a development environment and install all requirements run the following commands (example for windows):

    python -m venv venv
    venv/Scripts/activate
    python -m pip install -r requirements.txt

## Build and deploy

### Build

    python setup.py sdist bdist_wheel

### Deploy

TestPyPI:

    python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
    
PyPi:

    python -m twine upload dist/*

