Metadata-Version: 2.3
Name: festo-vaem
Version: 0.2.1
Summary: Library to control Festo Lifetech VAEM 8 Channel Valve Control Device
Keywords: Festo,Valve,Valves,Actuation,Valve Controller,Controller
Author: Joshua Dang, Kyle Wardlow
Author-email: Joshua Dang <joshua.dang@festo.com>, Kyle Wardlow <kyle.wardlow@festo.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: pymodbus<=3.11.4
Requires-Dist: pyserial<=3.5 ; extra == 'serial'
Requires-Python: >=3.10
Project-URL: Homepage, https://github.com/Festo-se/festo-vaem
Project-URL: Repository, https://github.com/Festo-se/festo-vaem.git
Project-URL: Issues, https://github.com/Festo-se/festo-vaem/issues
Provides-Extra: serial
Description-Content-Type: text/markdown

# VAEM

`festo-vaem` is a python package which allows for driver like capabilites and usage over Festo's 8 Channel Valve controller (VAEM) device.

Documentation can be found [here](https://festo-se.github.io/festo-vaem/). 

Examples can be found [here](https://github.com/Festo-se/festo-vaem/tree/main/examples) and [here](https://festo-se.github.io/festo-vaem/examples/examples)

## Installation

### Release (PENDING)

The lastest released version of this package can be found on the PyPi repo.
Install using pip:

```
pip install festo-vaem
```

### From git repository

The `festo-vaem` source code can also be installed directly from Github. Users can then choose to package it with pip locally if they wish
```
pip install git+https://github.com/Festo-se/festo-vaem.git
```
or using [`uv`](https://docs.astral.sh/uv/getting-started/installation/)
```
uv add "festo-vaem @ git+https://github.com/Festo-se/festo-vaem.git"
```