Metadata-Version: 2.4
Name: icepaposc
Version: 1.0.0
Summary: Python IcePAP Extension
Author: Jarkko Inki, Roberto Homs Puron
Maintainer-email: controls@cells.es
License: GPL-3.0-or-later
Project-URL: Homepage, https://gitlab.com/icepap-organization/IcepapOSC
Keywords: APP
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Communications
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyQt6
Requires-Dist: icepap>=3.6.1
Requires-Dist: numpy
Requires-Dist: pyqtgraph
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-qt; extra == "test"
Dynamic: license-file

# IcepapOSC

IcepapOSC is a python module and application to monitor and tune IcePAP based systems.

To install it on the system:

    python -m pip install .

To install locally for development:

    python -m pip install -e .[test]

Development with Pixi:

    pixi install

To run the application from the Pixi environment:

    pixi run icepaposc <host>

Available Pixi tasks:

    pixi run test
    pixi run pre-commit
    pixi run manual-test

The `test` task runs the automatic pytest suite with Qt configured for
headless execution. The `pre-commit` task runs Ruff fixes, Ruff formatting, and
all pre-commit hooks. The `manual-test` task launches the interactive manual
test runner from `icepaposc/manual_test` for a guided walkthrough of the
application functionality.

List the available manual scenarios with:

    pixi run manual-test --list-tests

Show all manual test runner options with:

    pixi run manual-test --help

 
To launch the application:

    icepaposc <host>


You can find how to contribute to this project on CONTRIBUTING.md file.
