Metadata-Version: 2.1
Name: ingeniamotion
Version: 0.10.2
Summary: Motion library for Novanta servo drives
Author-email: Novanta <support@ingeniamc.com>
Project-URL: Homepage, https://www.ingeniamc.com
Project-URL: Documentation, https://distext.ingeniamc.com/doc/ingeniamotion/latest/
Project-URL: Source, https://github.com/ingeniamc/ingeniamotion
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: ingenialink<8.0.0,>=7.6.0
Requires-Dist: ingenialogger>=0.2.1
Requires-Dist: ifaddr==0.1.7
Requires-Dist: exceptiongroup<2.0.0,>=1.3.0
Requires-Dist: virtual_drive>=0.1.0
Provides-Extra: fsoe
Requires-Dist: fsoe_master==0.2.1; extra == "fsoe"

Ingeniamotion
=============

![GitHub branch status](https://img.shields.io/github/checks-status/ingeniamc/ingeniamotion/master?label=Tests)
[![PyPi](https://img.shields.io/pypi/v/ingeniamotion.svg)](https://pypi.python.org/pypi/ingeniamotion)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ingeniamotion?color=2334D058)

[![CC by-nc-sa](https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/)

Ingeniamotion is a library that works over ingenialink and aims to simplify the interaction with Ingenia's drives.

[![Ingenia Servodrives](https://github.com/ingeniamc/ingenialink-python/blob/master/docs/_static/images/main_image.png?raw=true)](http://www.ingeniamc.com)

Requirements
------------

* Python 3.9 or higher
* [WinPcap](https://www.winpcap.org/install/) 4.1.3

Installation
------------

The recommended way to install is by using pip, i.e:
```bash
pip install ingeniamotion
```

Virtual environment management with Poetry
------------------------------------------

Install poetry:
```bash
pip install poetry
```

Use an environment with a certain Python version:
```bash
poetry env use 3.12
```

Install the required dependencies:
```bash
poetry install --all-groups
```

To install *FSoE* (optional):
```bash
poetry install --extras fsoe
```


Generate documentation
----------------------

To produce the documentation, run the following command:
```bash
poetry run poe docs
```

Run PyTest
----------

Create *tests/setups/tests_setup.py* file with configuration file.

This file is ignored by git and won't be uploaded to the repository.
Example of a setup:

```python
from pathlib import Path

from summit_testing_framework.setups import LocalDriveConfigSpecifier

DEN_NET_E_SETUP = LocalDriveConfigSpecifier.from_ethercat_configuration(
    identifier="den-net-e",
    dictionary=Path("C://Users//some.user//Downloads//den-net-e_eoe_2.7.3.xdf"),
    config_file=Path("C://Users//some.user//Downloads//den_net_e.xcf"),
    firmware=Path("C://Users//some.user//Downloads//den-net-e_2.7.3.lfu"),
    ifname="\\Device\\NPF_{675921D7-B64A-4997-9211-D18E2A6DC96A}",
    slave=1,
    boot_in_app=False,
)

TESTS_SETUP = DEN_NET_E_SETUP
```

For more information, check `summit-testing-framework` documentation.

Run tests selecting the markers that you want and are appropriate for your setup.
Beware that some tests may not be appropriate for the setup that you have and may fail.

```bash
poetry run poe tests -m {markers}
```
