Metadata-Version: 2.4
Name: auto-trainer-api
Version: 0.9.2
Summary: API for interfacing with the core acquisition process via platform and language agnostic message queues.
License: AGPL-3.0-only
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: pyhumps==3.8.0
Requires-Dist: pyzmq==26.4
Provides-Extra: telemetry
Requires-Dist: opentelemetry-api; extra == 'telemetry'
Requires-Dist: opentelemetry-sdk; extra == 'telemetry'
Provides-Extra: test
Requires-Dist: pytest==8.2.0; extra == 'test'
Description-Content-Type: text/markdown

# Autotrainer API: Python Integration

The python `auto-trainer-api` module is intended to provide an efficient means to emit information that
is needed for local or remote management and to receive commands from those sources.

The exposed API is intended to be agnostic to the underlying transport layer.  The current implementation uses
ZeroMQ for reasons described in the top-level README.

## Publishing
`python -m build`

`python -m twine upload dist/*` (requires PyPi API token)

## Installation
The package is published to the PyPi package index and can installed normally.

`pip install auto-trainer-api`
