Metadata-Version: 2.1
Name: TAER_Core
Version: 1.0.2
Summary: Core module for TAER (Test AER based sensors).
Author-email: Rafael de la Rosa <rafodelarosa.og@gmail.com>, Ruben Gomez Merchan <rgmerchan@us.es>
Requires-Python: >=3.10.5
Description-Content-Type: text/markdown
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: numpy==1.24.0
Requires-Dist: opencv-python
Requires-Dist: matplotlib<=3.10
Requires-Dist: PyYAML==6.0.1
Requires-Dist: wxPython==4.2.0
Requires-Dist: pre-commit

# TAER-Core module

This module represents the Core of TAER App. This module is not intended to be accessible to app users and it should be modified by app developers only. It is based on the [wxPython](https://wiki.wxpython.org) framework and the architecture is the well-known [Model-View-Controller](https://wiki.wxpython.org/ModelViewController) pattern. The components are organized as follows:

- Model: &nbsp; &nbsp; &nbsp; &nbsp; [main_model.py](src\TAER_Core\main_model.py)
- Controller: &nbsp; [main_presenter.py](src\TAER_Core\main_presenter.py) | [delegates.py](src\TAER_Core\Controllers\delegates.py) | [interactors.py](src\TAER_Core\Controllers\interactors.py)
- View: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [main_view.py](src\TAER_Core\main_view.py) | [Views](src\TAER_Core\Views)
