Metadata-Version: 2.4
Name: science_mode_4
Version: 0.0.7
Summary: Native ScienceMode4 protocol implementation
Project-URL: Homepage, https://github.com/nextroundwinner/ScienceModePython
Author-email: Marc Hofmann <marc-hofmann@gmx.de>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11
Requires-Dist: keyboard>=0.13.5
Requires-Dist: pyserial>=3.5
Description-Content-Type: text/markdown

# ScienceMode4 Python

## Introduction

Python implementation of ScienceMode 4 protocol (https://github.com/ScienceMode/ScienceMode4_P24) for HasomedScience P24 devices. To use this library see section [Installation](#installation).

## Requirements

Python 3.11 or higher

## Installation

- Install science_mode_4 library inclusive dependencies via pip
  - `pip install science_mode_4`
  - https://pypi.org/project/science-mode-4/

## Dependencies

- PySerial
  - https://pypi.org/project/pyserial/
  - `pip install pyserial`
- Keyboard (only for examples)
  - https://pypi.org/project/keyboard/
  - `pip install keyboard`

## Build library

- Install dependencies
  - `python -m pip install --upgrade build`
- Build project
  - `python -m build`
- Install local library
  - `pip install .\dist\science_mode_4-0.0.7-py3-none-any.whl` (adjust filename accordingly)
