Metadata-Version: 2.1
Name: tmalibrary
Version: 9.2
Summary: Probe and Actuator Library
Home-page: https://github.com/rfrsilva/tmalibrary
Author: Rui Silva
Author-email: rfsilva@student.dei.uc.pt
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# tmalibrary

Class files to be used during the development of probes and actuators developed in `Python`.


## Prerequisites

To use this library, you need to install `tmalibrary` module. To install this module, you need to execute the following command:

```sh
pip install tmalibrary
```

## Usage

To use this library in the development of your probe, you need to include the following lines in your probe main file, using the code below.

```python
from tmalibrary.probes import *
```

To use this library in the development of your actuator, you need to include the following line in your probe main file, using the code below.

```python
from tmalibrary.actuator import *
```

**Note**: To upload a new version of this library, the [INSTRUCTIONS.md](INSTRUCTIONS.md) file has all instructions needed.


